/*
* Rasheed Halka Django - Custom CSS
* Arabic & RTL Support
*/

/* Basic RTL Support */
.rtl {
    direction: rtl;
    text-align: right;
}

body {
    font-family: 'Tajawal', 'Arial', sans-serif !important;
}

/* Margin and padding adjustments for RTL */
.ml-1 {
    margin-right: 0.25rem !important;
    margin-left: 0 !important;
}

.ml-2 {
    margin-right: 0.5rem !important;
    margin-left: 0 !important;
}

.ml-3 {
    margin-right: 1rem !important;
    margin-left: 0 !important;
}

.mr-1 {
    margin-left: 0.25rem !important;
    margin-right: 0 !important;
}

.mr-2 {
    margin-left: 0.5rem !important;
    margin-right: 0 !important;
}

.mr-3 {
    margin-left: 1rem !important;
    margin-right: 0 !important;
}

/* Form elements RTL */
.form-label {
    text-align: right;
}

/* Button icon spacing */
.btn i {
    margin-left: 0.5rem;
    margin-right: 0;
}

/* Table adjustments */
.table-responsive {
    direction: rtl;
}

/* Card adjustments */
.card-header {
    text-align: right;
}

/* Badge adjustments for RTL */
.badge {
    margin-left: 0.5rem;
    margin-right: 0;
}

/* Custom colors matching Islamic themes */
.bg-primary {
    background-color: #1F618D !important;
}

.bg-success {
    background-color: #186A3B !important;
}

.btn-primary {
    background-color: #1F618D !important;
    border-color: #1F618D !important;
}

.btn-success {
    background-color: #186A3B !important;
    border-color: #186A3B !important;
}

/* Border colors */
.border-primary {
    border-color: #1F618D !important;
}

.border-success {
    border-color: #186A3B !important;
}

/* Print styles */
@media print {
    .no-print {
        display: none !important;
    }
    
    .card {
        border: none !important;
        box-shadow: none !important;
    }
    
    .card-header {
        background-color: #fff !important;
        color: #000 !important;
        border-bottom: 1px solid #ddd !important;
    }
} 