        :root {
            --primary-color: #008a9a;
            --primary-light: #7ebac4;
            --primary-lighter: #d1e8ed;
            --white-color: #ffffff;
            --light-color: #f8f9fa;
            --dark-color: #333333;
					
            --secondary-color: #f8b400;
					  --light-color: #f5f5f5;

			      --success-color: #28a745;
            --warning-color: #ffc107;
            --danger-color: #dc3545;
        }
        
		body {
				font-family: 'Tajawal', sans-serif;
				background-color: var(--light-color);
				color: var(--dark-color);
				direction: rtl;
				overflow-x: hidden;
				width: 100%;
				position: relative;
		}

		/* إصلاح مشكلة الانسحاب إلى اليسار */
		html, body {
				width: 100%;
				overflow-x: hidden;
				margin: 0;
				padding: 0;
		}        

        .container, .container-fluid {
            max-width: 100%;
/*
            padding-right: 15px;
            padding-left: 15px;
*/
						width: 90%;
						margin: 0 auto;
						
        }
/* ---------------------- */
/* ------- LOGIN -------- */
/* ---------------------- */
        .login-container {
            max-width: 450px;
            width: 100%;
            padding: 40px;
            background-color: var(--white-color);
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }
        
        .login-container::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 10px;
            background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
        }
        
        .logo-container {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .logo {
            width: 120px;
            height: auto;
            margin-bottom: 15px;
        }
        
        .logo-text {
            font-size: 28px;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 5px;
        }
        
        .logo-subtext {
            font-size: 14px;
            color: var(--primary-light);
            font-weight: 500;
        }
        
        .form-control {
            padding: 12px 15px;
            border-radius: 8px;
            border: 1px solid #ddd;
            margin-bottom: 15px;
            transition: all 0.3s;
        }
        
        .form-control:focus {
            border-color: var(--primary-light);
            box-shadow: 0 0 0 0.25rem rgba(0, 138, 154, 0.25);
        }
        
        .btn-login {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 12px;
            border-radius: 8px;
            font-weight: 600;
            width: 100%;
            transition: all 0.3s;
            margin-top: 10px;
        }
        
        .btn-login:hover {
            background-color: #007181;
        }
        
        .input-group-text {
            background-color: var(--primary-lighter);
            border: 1px solid #ddd;
            color: var(--primary-color);
        }
        
        .forgot-password {
            text-align: left;
            margin-top: 10px;
        }
        
        .forgot-password a {
            color: var(--primary-light);
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s;
        }
        
        .forgot-password a:hover {
            color: var(--primary-color);
            text-decoration: underline;
        }
        
        .login-footer {
            text-align: center;
            margin-top: 30px;
            font-size: 13px;
            color: #777;
        }
        
        .login-footer a {
            color: var(--primary-color);
            text-decoration: none;
        }
        
.bg-gray-900{
  --tw-bg-opacity: 1;
  background-color: rgb(17 24 39 / var(--tw-bg-opacity));
}
        .error-message {
            color: #dc3545;
            font-size: 14px;
            margin-top: 5px;
            display: none;
        }
        
        .wave-decoration {
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 100px;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23008a9a" fill-opacity="0.1" d="M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
            background-repeat: repeat-x;
            background-size: 1440px 100px;
        }
        
        @media (max-width: 576px) {
            .login-container {
                padding: 30px 20px;
                margin: 0 15px;
            }
            
            .logo {
                width: 100px;
            }
            
            .logo-text {
                font-size: 24px;
            }
        }


/* ------------------------- */
/* ------- REGISTER -------- */
/* ------------------------- */
        .register .logo-img {
            height: 100px;
            width: auto;
            object-fit: contain;
        }
        
        /* Hero Section */
        .registration-hero {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            color: white;
            padding: 20px 0;
            text-align: center;
            position: relative;
        }
        
        .registration-hero h1 {
            font-weight: 700;
            margin: 15px 0;
            font-size: 1.8rem;
        }
        
        /* Registration Form */
        .registration-container {
            background-color: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 30px;
            margin: -20px auto 30px;
            position: relative;
            z-index: 1;
            max-width: 1000px;
        }
      


/* Hide the calendar icon in Chrome/Edge */
input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
    opacity: 0;
}

        .form-step {
            display: none;
        }
        
        .form-step.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        
        .form-header {
            text-align: center;
            margin-bottom: 25px;
        }
        
        .form-header h2 {
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .form-header p {
            color: var(--dark-color);
            font-size: 1rem;
        }
        
        .form-label {
            font-weight: 500;
            margin-bottom: 8px;
            color: var(--dark-color);
            display: block;
        }
        
        .form-control, .form-select {
            padding: 12px 15px;
            border-radius: 8px;
            border: 1px solid #ddd;
            margin-bottom: 15px;
            width: 100%;
            font-family: 'Tajawal', sans-serif;
        }
        
        .form-control:focus, .form-select:focus {
            box-shadow: 0 0 0 0.25rem rgba(0, 138, 154, 0.25);
            border-color: var(--primary-light);
            outline: none;
        }
        
        .form-check-input:checked {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }
        
        .form-check-label {
            margin-right: 5px;
            cursor: pointer;
        }
        
        /* Buttons */
        .btn-custom {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 12px 30px;
            font-weight: 500;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 138, 154, 0.3);
            font-family: 'Tajawal', sans-serif;
            cursor: pointer;
        }
        
        .btn-custom:hover {
            background-color: #007181;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 138, 154, 0.4);
        }
        
        .btn-outline-custom {
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
            background: transparent;
            padding: 10px 25px;
            font-weight: 500;
            border-radius: 50px;
            transition: all 0.3s ease;
            font-family: 'Tajawal', sans-serif;
            cursor: pointer;
        }
        
        .btn-outline-custom:hover {
            background-color: var(--primary-color);
            color: white;
        }
        
        /* Progress Bar */
        .progress-container {
            margin-bottom: 30px;
        }
        
        .progress {
            height: 8px;
            border-radius: 5px;
            background-color: #e9ecef;
        }
        
        .progress-bar {
            background-color: var(--primary-color);
            transition: width 0.6s ease;
        }
        
        .step-indicator {
            display: flex;
            justify-content: space-between;
            margin-top: 15px;
        }
        
        .step {
            text-align: center;
            position: relative;
            flex: 1;
        }
        
        .step-number {
            width: 35px;
            height: 35px;
            background-color: #e9ecef;
            color: #6c757d;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 8px;
            font-weight: 700;
            border: 3px solid #e9ecef;
            font-size: 0.9rem;
        }
        
        .step.active .step-number {
            background-color: var(--primary-color);
            color: white;
            border-color: var(--primary-light);
        }
        
        .step.completed .step-number {
            background-color: var(--primary-light);
            color: white;
            border-color: var(--primary-light);
        }
        
        .step-title {
            font-size: 0.85rem;
            color: #6c757d;
            font-weight: 500;
        }
        
        .step.active .step-title {
            color: var(--primary-color);
            font-weight: 600;
        }
        
        .step.completed .step-title {
            color: var(--dark-color);
        }
        
        /* Family Members Section */
        .family-member-card {
            background-color: #f8f9fa;
            border-radius: 10px;
            padding: 15px;
            margin-bottom: 15px;
            border: 1px dashed #ddd;
            position: relative;
        }
        
        .remove-member {
            position: absolute;
            left: 15px;
            top: 15px;
            color: #dc3545;
            cursor: pointer;
            font-size: 1.2rem;
            background: none;
            border: none;
            padding: 0;
        }
        
        /* Chronic Diseases Section */
        .diseases-checkboxes {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 10px;
            margin-top: 15px;
        }
        
        .disease-checkbox {
            background-color: #f8f9fa;
            padding: 10px;
            border-radius: 5px;
            display: flex;
            align-items: center;
        }
        
        .disease-checkbox .form-check-input {
            margin-left: 8px;
        }
        
        /* Error Messages */
        .error-message {
            color: #dc3545;
            font-size: 0.8rem;
            margin-top: -10px;
            margin-bottom: 10px;
            display: none;
        }
        
        .is-invalid {
            border-color: #dc3545 !important;
        }
        
        .is-invalid:focus {
            box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
        }
        
        /* Phone Input Style */
        .phone-input-group {
            display: flex;
            align-items: center;
            direction: ltr; /* تغيير الاتجاه لليسار */
        }
        
        .phone-input-group select {
            flex: 0 0 100px;
            border-top-right-radius: 0;
            border-bottom-right-radius: 0;
            border-right: 0;
            height: 46px;
            border-top-left-radius: 8px;
            border-bottom-left-radius: 8px;
            font-size: 16px;
            font-weight: bold;
            background-color: #f8f9fa;
            /* إزالة السهم من حقل كود الدولة */
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            /* إضافة خلفية ثابتة */
            background-image: none;
            padding-right: 10px;
        }
        
        .phone-input-group input {
            flex: 1;
            border-top-left-radius: 0;
            border-bottom-left-radius: 0;
            border-top-right-radius: 8px;
            border-bottom-right-radius: 8px;
            text-align: right;
            direction: rtl;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .registration-container {
                padding: 20px;
                margin-top: -15px;
            }
            
            .logo-img {
                height: 80px;
            }
            
            .step-title {
                font-size: 0.75rem;
            }
            
            .diseases-checkboxes {
                grid-template-columns: 1fr;
            }
            
            .registration-hero h1 {
                font-size: 1.5rem;
            }
            
            .phone-input-group select {
                flex: 0 0 90px;
                font-size: 14px;
            }
        }
        
        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        /* SweetAlert RTL Fix */
        .swal2-popup {
            direction: rtl;
            text-align: right;
        }

        /* Review Data Styles */
        .review-data strong {
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--dark-color);
        }

        .review-data p {
            font-size: 1.1rem;
            margin-bottom: 15px;
            line-height: 1.6;
            font-weight: 700;
        }
        
        .review-data .data-value {
            font-size: 1.15rem;
            color: var(--primary-color);
            font-weight: 700;
        }
        
        .review-data .family-member {
            border-bottom: 1px solid #eee;
            padding-bottom: 10px;
            margin-bottom: 10px;
        }
        
        .review-data .family-member:last-child {
            border-bottom: none;
        }
        
        .review-data .family-member-diseases {
            font-size: 0.95rem;
            color: #666;
            margin-top: 5px;
        }
        
        /* تعديلات جديدة لتأكيد البيانات */
        .review-data .data-value.important {
            color: var(--primary-color);
            font-weight: 900;
            font-size: 1.2rem;
        }
        
        .review-data .subscription-type {
            color: var(--primary-color);
            font-weight: 900;
            font-size: 1.3rem;
            text-transform: uppercase;
        }



/* ------------------------- */
/* ------- INQUIRY -------- */
/* ------------------------- */
        /* Hero Section */
        .status-hero {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            color: white;
            padding: 100px 0 60px;
            text-align: center;
            position: relative;
        }
        
        .status-hero h1 {
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        /* Status Container */
        .status-container {
            background-color: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 40px;
            margin-top: -50px;
            margin-bottom: 50px;
            position: relative;
            z-index: 5;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .form-label {
            font-weight: 500;
            margin-bottom: 8px;
            color: var(--dark-color);
        }
        
        .form-control {
            padding: 12px 15px;
            border-radius: 8px;
            border: 1px solid #ddd;
            margin-bottom: 15px;
        }
        
        .form-control:focus {
            box-shadow: 0 0 0 0.25rem rgba(0, 138, 154, 0.25);
            border-color: var(--primary-light);
        }
        
        /* Buttons */
        .btn-custom {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 12px 30px;
            font-weight: 500;
            border-radius: 50px;
            transition: all 0.3s ease;
            width: 100%;
        }
        
        .btn-custom:hover {
            background-color: #007181;
            color: white;
            transform: translateY(-3px);
        }
        
        /* Status Result */
        .status-result {
            display: none;
            margin-top: 30px;
            padding: 25px;
            border-radius: 10px;
            text-align: center;
            animation: fadeIn 0.5s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .status-icon {
            font-size: 50px;
            margin-bottom: 15px;
        }
        
        .status-title {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .status-message {
            margin-bottom: 20px;
        }
        
        .status-active {
            background-color: rgba(40, 167, 69, 0.1);
            border: 1px solid var(--success-color);
        }
        
        .status-active .status-icon {
            color: var(--success-color);
        }
        
        .status-active .status-title {
            color: var(--success-color);
        }
        
        .status-pending {
            background-color: rgba(255, 193, 7, 0.1);
            border: 1px solid var(--warning-color);
        }
        
        .status-pending .status-icon {
            color: var(--warning-color);
        }
        
        .status-pending .status-title {
            color: var(--warning-color);
        }
        
        .status-not-found {
            background-color: rgba(220, 53, 69, 0.1);
            border: 1px solid var(--danger-color);
        }
        
        .status-not-found .status-icon {
            color: var(--danger-color);
        }
        
        .status-not-found .status-title {
            color: var(--danger-color);
        }
        
        .btn-subscribe {
            background-color: var(--secondary-color);
            color: var(--dark-color);
            border: none;
            padding: 10px 25px;
            font-weight: 500;
            border-radius: 50px;
            transition: all 0.3s ease;
            margin-top: 15px;
        }
        
        .btn-subscribe:hover {
            background-color: #e6a800;
            color: var(--dark-color);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .status-container {
                padding: 25px;
            }
            
            .status-hero {
                padding: 80px 0 40px;
            }
        }


/* --------- NAVBAR ---------*/
        /* Navbar - تم التعديل هنا */
        .navbar {
					  width: 100%;
            transition: all 0.5s ease;
            padding: 20px 0;
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(10px);
        }
        
        .navbar.scrolled {
            padding: 10px 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand img {
            height: 100px;
            transition: all 0.3s ease;
        }
        
        .navbar.scrolled .navbar-brand img {
            height: 50px;
        }
        
        .nav-link {
            font-weight: 600;
            margin: 0 10px;
            position: relative;
            color: var(--dark-color);
            transition: all 0.3s ease;
        }
        
        .nav-link::after {
					display: none;
        }
        
        .nav-link:hover,
        .nav-link.active {
            color: var(--primary-color);
        }
        
        .nav-link:hover::after {
            width: 100%;
            right: auto;
            left: 0;
        }
/*
        .nav-tabs .nav-link.active {
            color: var(--primary-color);
            font-weight: bold;
            border-bottom: 2px solid var(--primary-color);
        }        
        .nav-tabs .nav-link {
            color: var(--dark-color);
        }        
*/

		/* تحسينات للوضع الكامل الشاشة */
		.fullscreen-mode .navbar {
				display: none !important;
		}

/* ------------------------- */
/* ------- DASHBOARD -------- */
/* ------------------------- */
  .dashboard-header {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            color: white;
            padding: 20px 0;
            text-align: center;
            margin-bottom: 30px;
        }      

.header-container{
	    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    direction: rtl;
    padding: 0 10px;
}
.logout-btn {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15px;
    padding: 6px 12px;
}


#refreshBtn {
	    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15px;
    padding: 6px 12px;
}


        .dashboard-header h1 {
            font-weight: 700;
            margin: 15px 0;
            font-size: 1.8rem;
        }        
        .database-container {
            background-color: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 30px;
            margin-bottom: 30px;
        }
        
        .filters-container {
            background-color: white;
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        } 
        .filter-section {
            margin-bottom: 15px;
            padding: 15px;
            background-color: #f8f9fa;
            border-radius: 8px;
        }  
        .filter-section h5 {
            color: var(--primary-color);
            margin-bottom: 15px;
            font-weight: 600;
        }
        .filter-group {
            margin-bottom: 10px;
        }
        
        .filter-label {
            font-weight: 500;
            margin-bottom: 5px;
            display: block;
            font-size: 0.9rem;
        }
        
        .filter-control {
            width: 100%;
            padding: 8px 12px;
            border-radius: 5px;
            border: 1px solid #ddd;
            font-size: 0.9rem;
        }
        
        .btn-filter {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 8px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 0.9rem;
        }
        
        .btn-filter:hover {
            background-color: #007181;
        }
        
        .stats-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .stats-card {
            background: white;
            border-radius: 10px;
            padding: 15px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            text-align: center;
        }
        
        .stats-card h5 {
            color: var(--primary-color);
            margin-bottom: 10px;
            font-size: 0.9rem;
            font-weight: 600;
        }
        
        .stats-card .stat-value {
            font-size: 22px;
            font-weight: 700;
            color: var(--dark-color);
        }
        
        .stats-card .stat-change {
            font-size: 0.8rem;
            color: #28a745;
            margin-top: 5px;
        }
        
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
            font-size: 0.9rem;
        }
        
        .data-table th, .data-table td {
            padding: 12px 15px;
            text-align: right;
            border: 1px solid #e0e0e0;
        }
        
        .data-table th {
            background-color: #f2f2f2;
            font-weight: 600;
            color: var(--dark-color);
            position: sticky;
            top: 0;
        }
        
        .data-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        
        .data-table tr:hover {
            background-color: #f1f1f1;
        }
        
        .badge-subscription {
            font-size: 0.75rem;
            padding: 4px 8px;
            border-radius: 4px;
        }
        
        .sent-badge {
            background-color: #28a745;
            color: white;
            padding: 3px 8px;
            border-radius: 4px;
            font-size: 0.75rem;
        }
        
        .not-sent-badge {
            background-color: #dc3545;
            color: white;
            padding: 3px 8px;
            border-radius: 4px;
            font-size: 0.75rem;
        }
        
        .activated-badge {
            background-color: #17a2b8;
            color: white;
            padding: 3px 8px;
            border-radius: 4px;
            font-size: 0.75rem;
        }
        
        .disease-badge {
            background-color: #f8d7da;
            color: #721c24;
            padding: 2px 6px;
            border-radius: 4px;
            font-size: 0.75rem;
            margin-right: 5px;
            margin-bottom: 5px;
            display: inline-block;
        }
        
        .btn-show-family {
            background-color: var(--primary-light);
            color: white;
            border: none;
            padding: 3px 10px;
            border-radius: 4px;
            font-size: 0.8rem;
            cursor: pointer;
        }
        
        .btn-save-changes {
            background-color: var(--secondary-color);
            color: var(--dark-color);
            border: none;
            padding: 3px 10px;
            border-radius: 4px;
            font-size: 0.8rem;
            cursor: pointer;
        }
        
        .family-member-card {
            background-color: #f8f9fa;
            border-radius: 8px;
            padding: 15px;
            margin-bottom: 15px;
            border-right: 4px solid var(--primary-color);
        }
        
        .modal-header {
            background-color: var(--primary-color);
            color: white;
        }
        
        .member-info-row {
            display: flex;
            flex-wrap: wrap;
            margin-bottom: 8px;
        }
        
        .member-info-label {
            font-weight: 600;
            color: var(--primary-color);
            min-width: 120px;
            margin-left: 10px;
        }
        
        .member-info-value {
            flex: 1;
        }        
        .family-members-list {
            max-height: 400px;
            overflow-y: auto;
            padding: 10px;
        }        
        .table-responsive {
            max-height: 600px;
            overflow-y: auto;
        }        
        .export-section {
            background-color: white;
            border-radius: 10px;
            padding: 20px;
            margin-top: 20px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }     
        .btn-export {
            background-color: var(--secondary-color);
            color: var(--dark-color);
            border: none;
            padding: 10px 25px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 500;
        }
        .btn-export:hover {
            background-color: #e0a800;
        }
        
        .btn-success {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }
        
        .btn-success:hover {
            background-color: #007181;
            border-color: #006070;
        }
        
        .alert {
            padding: 10px 15px;
            border-radius: 5px;
            margin-bottom: 15px;
        }
        
        .alert-success {
            background-color: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }
        
        .alert-danger {
            background-color: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }        

        .search-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            flex-wrap: wrap;
            gap: 15px;
        }        
        .search-box {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-grow: 1;
        }        
        .search-control {
            flex: 1;
            padding: 8px 12px;
            border-radius: 5px;
            border: 1px solid #ddd;
        }
        
        .fullscreen-btn-container {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .fullscreen-btn {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 6px 12px;
            border-radius: 5px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 5px;
        }        
        .fullscreen-btn i {
            font-size: 14px;
        }
        
        .add-subscriber-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .btn-add-subscriber {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 8px 20px;
            border-radius: 5px;
            cursor: pointer;
        }
        /* أنماط جديدة لأفراد الأسرة في التصدير */
        .family-member-row {
            background-color: #f8f9fa;
        }        
        .main-subscriber-row {
            background-color: #e9ecef;
            font-weight: bold;
        }
        /* أنماط جديدة لزر التحديد */
        .select-checkbox {
            width: 18px;
            height: 18px;
            cursor: pointer;
        }
        /* حاسبة الاشتراكات */
        .subscription-calculator-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            margin-bottom: 20px;
        }

        .subscription-calculator-container {
            display: none;
            background-color: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 30px;
            margin-bottom: 30px;
        }

        /* تبويبات الإحصائيات */
        .stats-tabs .nav-link {
            padding: 8px 15px;
            font-size: 0.9rem;
        }

        .stats-tabs .nav-link.active {
            background-color: var(--primary-color);
            color: white;
            border-radius: 5px;
        }
        /* أنماط جديدة للمهنة */
        .profession-badge {
            background-color: #e2e3e5;
            color: #383d41;
            padding: 2px 6px;
            border-radius: 4px;
            font-size: 0.75rem;
            margin-right: 5px;
            display: inline-block;
        }
        /* سجل التصدير */
        .export-history {
            margin-top: 20px;
            border-top: 1px solid #eee;
            padding-top: 20px;
        }
        .export-history-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px;
            border-bottom: 1px solid #eee;
        }

        .export-history-item:hover {
            background-color: #f9f9f9;
        }

        .export-history-name {
            flex: 1;
            font-weight: 500;
        }

        .export-history-date {
            color: #666;
            font-size: 0.9rem;
            margin-left: 15px;
        }
        .export-history-actions {
            display: flex;
            gap: 10px;
        }
        @media (max-width: 768px) {
            .stats-container {
                grid-template-columns: 1fr 1fr;
            }            
            .data-table th, .data-table td {
                padding: 8px 10px;
                font-size: 0.8rem;
            }
            .search-header {
                flex-direction: column;
                align-items: stretch;
            }            
            .search-box {
                flex-direction: column;
                align-items: stretch;
            }            
            .fullscreen-btn-container {
                justify-content: flex-end;
                margin-top: 10px;
            }
        }
/*

@media (max-width: 480px) {
    .logout-btn {
        font-size: 12px;
        padding: 4px 8px;
        left: 10px;
    }*/
