html, body {
    height: 100%;
    direction: rtl;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px;
}

/* Custom styles for RTL support */
.table th, .table td {
    text-align: right;
}

.form-check-input {
    float: right;
    margin-left: 0.5em;
    margin-right: -1.5em;
}

.form-check-label {
    margin-right: 1.5em;
}

/* Styles for Excel mapping */
.mapping-row {
    margin-bottom: 10px;
}

/* Statistics display */
.stats-box {
    background-color: #f8f9fa;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 20px;
}

/* DataTables RTL fix */
table.dataTable {
    direction: rtl;
}

/* Card hover effect */
.card {
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Custom button styles */
.btn-excel {
    background-color: #1D6F42;
    color: white;
}

.btn-excel:hover {
    background-color: #16593A;
    color: white;
}

/* Preview table styles */
.preview-table {
    font-size: 0.9rem;
}

.preview-table th {
    background-color: #f0f0f0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .btn-group .btn {
        padding: 0.25rem 0.5rem;
        font-size: 0.875rem;
    }
}
