/* إعدادات أساسية */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Tajawal', sans-serif;
    background-color: #f8f9fa;
    color: #2c3e50;
    line-height: 1.6;
    direction: rtl;
}

/* الشريط العلوي */
.header {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 15px 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header h1 {
    font-size: 24px;
    font-weight: 700;
}

.login-btn {
    background: rgba(255,255,255,0.2);
    border: 2px solid white;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background: white;
    color: #e74c3c;
}

/* المحتوى الرئيسي */
.main-content {
    padding: 20px;
    max-width: 500px;
    margin: 0 auto;
}

/* الإحصائيات */
.stats {
    display: flex;
    justify-content: space-around;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 25px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #7f8c8d;
    font-weight: 600;
}

/* الأزرار الرئيسية */
.action-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.action-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 20px 15px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.action-btn:hover::before {
    left: 100%;
}

.action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.action-btn:active {
    transform: translateY(-1px);
}

/* ألوان مختلفة للأزرار */
.action-btn.primary {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.action-btn.success {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
}

.action-btn.info {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.action-btn.secondary {
    background: linear-gradient(135deg, #95a5a6 0%, #7f8c8d 100%);
}

.action-btn.warning {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}

.action-btn.stats {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
}

.action-btn.invitation {
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
}

.btn-icon {
    font-size: 24px;
    margin-bottom: 5px;
    justify-content: center;
}

.btn-text {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
}

/* آخر السجلات */
.recent-section {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.recent-section h2 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #2c3e50;
    border-bottom: 2px solid #e74c3c;
    padding-bottom: 10px;
}

.recent-list {
    margin-bottom: 25px;
}

.recent-list:last-child {
    margin-bottom: 0;
}

.recent-list h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #7f8c8d;
}

.list-items {
    max-height: 120px;
    overflow-y: auto;
}

.list-item {
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.list-item:last-child {
    margin-bottom: 0;
}

.item-name {
    font-weight: 600;
    color: #2c3e50;
}

.item-info {
    font-size: 14px;
    color: #7f8c8d;
}

.empty-message {
    text-align: center;
    color: #bdc3c7;
    font-style: italic;
    padding: 20px;
}

/* النوافذ المنبثقة */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    padding: 25px;
    border-radius: 15px;
    width: 90%;
    max-width: 400px;
    animation: slideUp 0.3s ease;
}

.modal-large {
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-content h2 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: center;
    border-bottom: 2px solid #e74c3c;
    padding-bottom: 10px;
}

/* قسم الفلاتر */
.filter-section {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid #ecf0f1;
}

.filter-row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    align-items: center;
}

.filter-row:last-child {
    margin-bottom: 0;
}

.filter-row input,
.filter-row select {
    flex: 1;
    padding: 10px;
    border: 2px solid #ecf0f1;
    border-radius: 8px;
    font-size: 14px;
}

.clear-filters-btn {
    background: #95a5a6;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.clear-filters-btn:hover {
    background: #7f8c8d;
}

/* شريط البحث */
.search-bar {
    margin-bottom: 20px;
}

.search-bar input {
    width: 100%;
    padding: 12px;
    border: 2px solid #ecf0f1;
    border-radius: 10px;
    font-size: 16px;
}

/* قائمة المتبرعين */
.donors-list {
    max-height: 400px;
    overflow-y: auto;
    margin-bottom: 20px;
}

.donor-item {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 10px;
    border: 1px solid #ecf0f1;
}

.donor-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.donor-name {
    font-weight: 700;
    color: #2c3e50;
    font-size: 16px;
}

.blood-type-badge {
    background: #e74c3c;
    color: white;
    padding: 4px 8px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.donor-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.donor-phone {
    color: #7f8c8d;
    font-size: 14px;
}

.donor-actions {
    display: flex;
    gap: 10px;
}

.call-btn {
    background: #2ecc71;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.call-btn:hover {
    background: #27ae60;
}

.edit-btn {
    background: #3498db;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.edit-btn:hover {
    background: #2980b9;
}

.delete-btn {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.delete-btn:hover {
    background: #c0392b;
}

.item-actions {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.item-actions button {
    padding: 6px 10px;
    font-size: 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.item-notes {
    font-size: 11px;
    color: #7f8c8d;
    margin-top: 5px;
    padding: 4px 8px;
    background: #f8f9fa;
    border-radius: 4px;
    border-right: 3px solid #3498db;
}

.donor-details {
    font-size: 12px;
    color: #95a5a6;
    margin-top: 5px;
}

.donor-eligibility {
    font-size: 12px;
    font-weight: 600;
    margin-top: 5px;
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
}

/* حاوية البحث عن المتبرع */
.donor-search-container {
    position: relative;
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 2px solid #ecf0f1;
    border-top: none;
    border-radius: 0 0 10px 10px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.search-result-item {
    padding: 12px 15px;
    cursor: pointer;
    border-bottom: 1px solid #f8f9fa;
    transition: background 0.3s ease;
}

.search-result-item:hover {
    background: #f8f9fa;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item .donor-name {
    font-weight: 600;
    color: #2c3e50;
}

.search-result-item .donor-info {
    font-size: 12px;
    color: #7f8c8d;
    margin-top: 2px;
}

/* زر الطباعة */
.print-btn {
    background: #27ae60;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.print-btn:hover {
    background: #229954;
}

/* محتوى الإحصائيات */
.statistics-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #ecf0f1;
    margin-top: 20px;
}

.stats-loading {
    text-align: center;
    padding: 40px;
    color: #7f8c8d;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.stat-card h3 {
    margin: 0 0 10px 0;
    font-size: 14px;
    opacity: 0.9;
}

.stat-card .stat-value {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.stat-card .stat-label {
    font-size: 12px;
    opacity: 0.8;
    margin-top: 5px;
}

.stats-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.stats-table th,
.stats-table td {
    padding: 12px;
    text-align: right;
    border-bottom: 1px solid #ecf0f1;
}

.stats-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.stats-table tr:hover {
    background: #f8f9fa;
}

/* تنسيقات الكشف بالأسماء */
.names-list-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 10px;
}

.names-list-header h2 {
    margin: 0 0 10px 0;
    font-size: 24px;
}

.date-range {
    margin: 0;
    font-size: 16px;
    opacity: 0.9;
}

.names-table {
    font-size: 14px;
    border-collapse: collapse;
    margin: 20px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.names-table th {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: white;
    font-weight: 600;
    padding: 15px 12px;
    text-align: center;
    border: none;
}

.names-table td {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid #ecf0f1;
    vertical-align: middle;
}

.names-table tr:nth-child(even) {
    background: #f8f9fa;
}

.names-table tr:hover {
    background: #e8f4f8;
    transition: background 0.3s ease;
}

.total-count {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin: 20px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px solid #3498db;
}

/* تنسيقات إحصائيات المتبرع */
.donor-stats-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 25px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.donor-stats-header h2 {
    margin: 0 0 15px 0;
    font-size: 28px;
    font-weight: 700;
}

.donor-stats-header .donor-info {
    margin: 0 0 10px 0;
    font-size: 18px;
    opacity: 0.95;
}

.donor-stats-header .date-range {
    margin: 0;
    font-size: 16px;
    opacity: 0.9;
    font-style: italic;
}

.donor-summary {
    margin-top: 30px;
    padding: 25px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.donor-summary h3 {
    margin: 0 0 20px 0;
    font-size: 22px;
    text-align: center;
    font-weight: 600;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.summary-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 16px;
    line-height: 1.4;
}

.summary-item strong {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    opacity: 0.9;
}

/* تنسيقات الدعوات */
.invitation-preview {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    margin: 20px 0;
    max-width: 100%;
}

@media (max-width: 480px) {
    .invitation-preview {
        padding: 15px;
        border-radius: 10px;
        margin: 10px 0;
    }
}

.invitation-preview::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.3; }
}

.invitation-header {
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.invitation-header h2 {
    font-size: 24px;
    margin: 0 0 8px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 480px) {
    .invitation-header h2 {
        font-size: 20px;
    }
}

.invitation-header .subtitle {
    font-size: 16px;
    opacity: 0.9;
    margin: 0;
}

@media (max-width: 480px) {
    .invitation-header .subtitle {
        font-size: 14px;
    }
}

.blood-type-highlight {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 24px;
    font-weight: bold;
    margin: 15px 0;
    display: inline-block;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

@media (max-width: 480px) {
    .blood-type-highlight {
        font-size: 18px;
        padding: 10px 15px;
        margin: 10px 0;
    }
}

.invitation-details {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    margin: 15px 0;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

@media (max-width: 480px) {
    .invitation-details {
        padding: 10px;
        margin: 10px 0;
    }
}

.invitation-details h3 {
    font-size: 18px;
    margin: 0 0 15px 0;
    color: #fff;
}

@media (max-width: 480px) {
    .invitation-details h3 {
        font-size: 16px;
        margin: 0 0 10px 0;
    }
}

.invitation-details .detail-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
    font-size: 14px;
    flex-wrap: wrap;
}

@media (max-width: 480px) {
    .invitation-details .detail-item {
        font-size: 12px;
        margin: 8px 0;
        flex-direction: column;
        text-align: center;
    }
}

.invitation-details .detail-item .icon {
    margin-left: 8px;
    font-size: 16px;
}

@media (max-width: 480px) {
    .invitation-details .detail-item .icon {
        margin-left: 0;
        margin-bottom: 4px;
        font-size: 14px;
    }
}

.invitation-message {
    background: rgba(255, 255, 255, 0.15);
    padding: 15px;
    border-radius: 10px;
    margin: 15px 0;
    font-style: italic;
    font-size: 14px;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

@media (max-width: 480px) {
    .invitation-message {
        padding: 10px;
        margin: 10px 0;
        font-size: 12px;
    }
}

.invitation-footer {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.8;
    position: relative;
    z-index: 1;
}

@media (max-width: 480px) {
    .invitation-footer {
        margin-top: 15px;
        font-size: 12px;
    }
}

.invitation-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

@media (max-width: 480px) {
    .invitation-actions {
        gap: 8px;
        margin-top: 15px;
    }
}

.invitation-actions .action-btn {
    min-width: 120px;
    padding: 12px 15px;
    font-size: 12px;
}

@media (max-width: 480px) {
    .invitation-actions .action-btn {
        min-width: 100px;
        padding: 10px 12px;
        font-size: 11px;
    }
}

/* تحسينات الطباعة للدعوة */
@media print {
    .invitation-actions {
        display: none !important;
    }
    
    .invitation-preview {
        box-shadow: none !important;
        border: 2px solid #333 !important;
    }
}

/* تحسينات الطباعة لإحصائيات المتبرع */
@media print {
    .donor-stats-header {
        background: white !important;
        color: black !important;
        border: 3px solid black !important;
        box-shadow: none !important;
    }
    
    .donor-summary {
        background: white !important;
        color: black !important;
        border: 2px solid black !important;
        box-shadow: none !important;
    }
    
    .summary-item {
        background: #f5f5f5 !important;
        border: 1px solid black !important;
        color: black !important;
    }
    
    .summary-item strong {
        color: black !important;
    }
}
@media print {
    .names-list-header {
        background: white !important;
        color: black !important;
        border: 2px solid black !important;
    }
    
    .names-table {
        box-shadow: none !important;
        border: 1px solid black !important;
    }
    
    .names-table th {
        background: #f0f0f0 !important;
        color: black !important;
        border: 1px solid black !important;
    }
    
    .names-table td {
        border: 1px solid black !important;
    }
    
    .total-count {
        border: 2px solid black !important;
        background: white !important;
    }
}
@media print {
    body * {
        visibility: hidden;
    }
    
    #statisticsModal, #statisticsModal * {
        visibility: visible;
    }
    
    #statisticsModal {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
    }
    
    .form-buttons,
    .filter-section,
    .modal-content h2 {
        display: none !important;
    }
}
.voucher-info {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    margin: 15px 0;
    border: 1px solid #ecf0f1;
}

.voucher-info h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.voucher-detail {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
}

.voucher-label {
    color: #7f8c8d;
    font-weight: 600;
}

.voucher-value {
    color: #2c3e50;
    font-weight: 600;
}

/* النماذج */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input, select, textarea {
    padding: 15px;
    border: 2px solid #ecf0f1;
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Tajawal', sans-serif;
    transition: border-color 0.3s ease;
    width: 100%;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #e74c3c;
}

textarea {
    resize: vertical;
    min-height: 80px;
}

.form-buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.submit-btn, .cancel-btn {
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.submit-btn {
    background: #e74c3c;
    color: white;
}

.submit-btn:hover {
    background: #c0392b;
}

.cancel-btn {
    background: #ecf0f1;
    color: #7f8c8d;
}

.cancel-btn:hover {
    background: #bdc3c7;
}

/* رسائل التنبيه */
.notification {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    background: #2ecc71;
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    font-weight: 600;
    z-index: 2000;
    opacity: 0;
    transition: all 0.3s ease;
}

.notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.notification.error {
    background: #e74c3c;
}

.notification.warning {
    background: #f39c12;
}

/* الحركات */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* تصميم متجاوب للهاتف */
@media (max-width: 480px) {
    .main-content {
        padding: 15px;
    }
    
    .header h1 {
        font-size: 20px;
    }
    
    .stats {
        padding: 15px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .action-btn {
        padding: 15px;
    }
    
    .btn-icon {
        font-size: 20px;
        width: 35px;
        height: 35px;
    }
    
    .btn-text {
        font-size: 16px;
    }
    
    .modal-content {
        padding: 20px;
        margin: 20px;
    }
}

/* تحسين التمرير */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #e74c3c;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #c0392b;
}
