body {
    direction: rtl;
    text-align: right;
}

body {
            background-color: #f8f9fa;
            font-family: 'Tahoma', Arial, sans-serif;
        }
        .arabic-text {
            font-family: 'Tahoma', Arial, sans-serif;
        }
        .bg-primary {
            background-color: #0d6efd !important;
        }
        .bg-success {
            background-color: #198754 !important;
        }
        .bg-info { 
            background-color: #0dcaf0 !important; 
        }
        .bg-warning {
            background-color: #ffc107 !important;
        }
        .bg-danger {
            background-color: #dc3545 !important;
        }
        .stat-card {
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        .stat-card:hover {
            transform: translateY(-5px);
        }
        .navbar-brand {
            font-weight: bold;
            font-size: 1.5rem;
        }
        .form-container {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 0 15px rgba(0,0,0,0.1);
            padding: 25px;
            margin-bottom: 30px;
        }
        .table-container {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 0 15px rgba(0,0,0,0.1);
            padding: 20px;
            margin-bottom: 30px;
            overflow-x: auto;
        }
        .action-btn {
            margin: 0 3px;
        }
        .toggle-form-btn {
            margin-bottom: 15px;
        }
        .page-title {
            color: #0d6efd;
            border-bottom: 2px solid #0d6efd;
            padding-bottom: 10px;
            margin-bottom: 20px;
        }
        .form-label {
            font-weight: bold;
        }
        .footer {
            background-color: #f8f9fa;
            padding: 20px 0;
            text-align: center;
            margin-top: 30px;
            border-top: 1px solid #dee2e6;
        }
		
		

.action-btn[disabled] {
    cursor: not-allowed;
    opacity: 0.6;
}
.action-btn[title]:hover:after {
    content: attr(title);
    position: absolute;
    background: #333;
    color: #fff;
    padding: 5px;
    border-radius: 3px;
    z-index: 100;
    margin-top: 25px;
    margin-left: -20px;
    font-size: 12px;
    width: max-content;
}




/* ----------------------- Stats_report.php ----------------------- */
.stat-card {
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card h3 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.stat-card h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.stat-card h2 {
    font-size: 1.8rem;
    font-weight: bold;
}

.settlement-plan {
    border: 1px solid #dee2e6;
    border-radius: 5px;
    padding: 15px;
    background-color: #f8f9fa;
}

.progress {
    height: 25px;
}

.progress-bar {
    font-weight: bold;
}

/* ----------------------- Stats_report.php ----------------------- */



.clickable-card {
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 10px;
}

.clickable-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.clickable-card:active {
    transform: translateY(-2px);
}


/* ----------------------- about.php ----------------------- */
        :root {
            --primary-color: #4361ee;
            --secondary-color: #3a0ca3;
            --accent-color: #f72585;
            --light-color: #f8f9fa;
            --dark-color: #212529;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.8;
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .hero-section {
            background: linear-gradient(rgba(67, 97, 238, 0.9), rgba(58, 12, 163, 0.9)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%234361ee"/><path d="M0 50 L100 50 M50 0 L50 100" stroke="%233a0ca3" stroke-width="1"/></svg>');
            background-size: cover;
            color: white;
            padding: 100px 0;
            text-align: center;
        }
        
        .section-title {
            position: relative;
            margin-bottom: 40px;
            padding-bottom: 15px;
            color: var(--secondary-color);
        }
        
        .section-title:after {
            content: "";
            position: absolute;
            bottom: 0;
            right: 0;
            width: 70px;
            height: 4px;
            background: var(--accent-color);
            border-radius: 2px;
        }
        
        .feature-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            border-radius: 12px;
            overflow: hidden;
            height: 100%;
            background-color: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .feature-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin-bottom: 20px;
        }
        
        .feature-list {
            list-style-type: none;
            padding: 0;
        }
        
        .feature-list li {
            padding: 10px 0;
            border-bottom: 1px dashed #eee;
            position: relative;
            padding-right: 25px;
        }
        
        .feature-list li:last-child {
            border-bottom: none;
        }
        
        .feature-list li:before {
            content: "\f00c";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            right: 0;
            top: 12px;
            color: var(--primary-color);
        }
        
        .conclusion-card {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            border-radius: 15px;
            overflow: hidden;
        }
        
        .conclusion-icon {
            font-size: 50px;
            opacity: 0.7;
        }
        
        footer {
            background: linear-gradient(135deg, var(--secondary-color), #2a075e);
            color: rgba(255, 255, 255, 0.8);
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            background: var(--accent-color);
            transform: translateY(-5px);
        }
        
        .arabic-font {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            font-weight: 500;
        }
/* ----------------------- END of about.php ----------------------- */



/* ----------------------- purchases.php ----------------------- */
/* Add highlight style */
.admin-highlight {
    background-color: #e6f7ff;
    border-left: 3px solid #1890ff;
    font-weight: bold;
}
.main-row {
    cursor: pointer;
}
.main-row:hover {
    background-color: #f8f9fa;
}
.collapse-row {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
}
.avatar-sm {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #ddd;
}
.avatar-md {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #ddd;
}
.avatar-lg {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #ddd;
}

.kasrah-header {
    background-color: #f0f7ff;
    border-top: 2px solid #4361ee;
    border-bottom: 2px solid #4361ee;
}
.user-purchase {
    font-weight: bold;
    background-color: #fffde7;
}
.user-purchase td {
    font-weight: bold;
}
/* ----------------------- END of purchases.php ----------------------- */



/* ----------------------- index.php ----------------------- */


/* ----------------------- index.php ----------------------- */


/* ----------------------- index.php ----------------------- */


/* ----------------------- index.php ----------------------- */


/* ----------------------- index.php ----------------------- */


/* ----------------------- index.php ----------------------- */

