/* Custom Styles for HDF Global Scholarship Portal */

:root {
    --primary-color: #0d577f;
    --secondary-color: #EECD25;
    --success-color: #27AE60;
    --danger-color: #E74C3C;
    --warning-color: #F39C12;
    --light-gray: #f8f9fa;
    --dark-gray: #343a40;
    --gradient-primary: linear-gradient(135deg, #0d577f 0%, #1a7bb8 100%);
    --gradient-secondary: linear-gradient(135deg, #EECD25 0%, #f4d03f 100%);
    --gradient-hero: linear-gradient(135deg, #0d577f 0%, #1a7bb8 100%);
    --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-medium: 0 4px 20px rgba(0,0,0,0.15);
    --shadow-heavy: 0 8px 30px rgba(0,0,0,0.2);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

/* Typography */
body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-weight: 600;
}

/* Ensure headings use Playfair Display */
.hero-title, .section-title, .feature-title, .program-title, .eligibility-title, .step-title, .contact-title {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif !important;
}

/* Ensure body text uses Outfit */
.hero-subtitle, .hero-description, .section-subtitle, .feature-description, .program-description, .step-description, .contact-subtitle {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero);
    z-index: -2;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    z-index: -1;
}

.hero-content {
    /* max-width: 800px; */
    padding: 2rem;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.hero-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    animation: bounce 2s infinite;
    color: var(--secondary-color);
}

.hero-logo {
    animation: fadeInUp 1.2s ease-out;
}

.hero-logo img {
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
    transition: var(--transition);
}

.hero-logo img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 12px rgba(0,0,0,0.4));
}

.hero-title {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.hero-description {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.8;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
    box-shadow: var(--shadow-medium);
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.hero-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

/* Section Headers */
.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 6rem 0;
}

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    height: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.feature-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-title {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-description {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #666;
    line-height: 1.6;
}

/* Programs Section */
.programs-section {
    background: white;
    padding: 6rem 0;
}

.program-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    height: 100%;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    border: 1px solid #f0f0f0;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.program-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    flex-shrink: 0;
    transition: var(--transition);
}

.program-card:hover .program-icon {
    transform: scale(1.1);
}

.program-content {
    flex: 1;
}

.program-title {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.program-description {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Eligibility Section */
.eligibility-section {
    background: var(--gradient-primary);
    color: white;
    padding: 6rem 0;
}

.eligibility-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.eligibility-title {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    color: white;
}

.eligibility-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.eligibility-list li {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.eligibility-list li i {
    margin-right: 0.5rem;
    width: 16px;
    text-align: center;
}

/* Process Section */
.process-section {
    background: var(--gradient-secondary);
    color: var(--primary-color);
    padding: 6rem 0;
}

.process-step {
    text-align: center;
    padding: 2rem 1rem;
}

.step-circle {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.process-step:hover .step-circle {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.step-number {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.step-title {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.step-description {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--primary-color);
    line-height: 1.6;
    font-weight: 500;
}

/* Contact Section */
.contact-section {
    background: var(--primary-color);
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.contact-title {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-subtitle {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-buttons .btn {
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
    box-shadow: var(--shadow-medium);
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.contact-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .program-card {
        flex-direction: column;
        text-align: center;
    }
    
    .eligibility-card {
        margin-bottom: 2rem;
    }
}

/* Enhanced Button Styles */
.btn {
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
    color: white;
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    background: transparent;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
    transform: translateY(-2px);
}

.btn-warning {
    background: var(--secondary-color);
    color: var(--primary-color);
    border: none;
}

.btn-warning:hover {
    background: #f4d03f;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-success {
    background: var(--gradient-primary);
    color: white;
    border: none;
}

.btn-success:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-info {
    background: var(--secondary-color);
    color: var(--primary-color);
    border: none;
}

.btn-info:hover {
    background: #f4d03f;
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Bootstrap Color Overrides */
.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-warning {
    background-color: var(--secondary-color) !important;
    color: var(--primary-color) !important;
}

.bg-info {
    background-color: var(--secondary-color) !important;
    color: var(--primary-color) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-warning {
    color: var(--secondary-color) !important;
}

.progress-bar {
    background-color: var(--primary-color);
}

.progress-bar.bg-warning {
    background-color: var(--secondary-color) !important;
}

.progress-bar.bg-info {
    background-color: var(--secondary-color) !important;
}

/* Enhanced Card Styles */
.card {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: none;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.card-header {
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--border-radius) var(--border-radius) 0 0 !important;
}

.card-header h5, .card-header h6 {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    margin-bottom: 0;
}

/* Welcome Card Styling */
.welcome-card {
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    overflow: hidden;
    position: relative;
}

.welcome-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    pointer-events: none;
}

.welcome-card .card-body {
    position: relative;
    z-index: 1;
}

.welcome-title {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 0.5rem;
}

.welcome-subtitle {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.welcome-icon {
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    transition: var(--transition);
}

.welcome-card:hover .welcome-icon {
    color: rgba(255, 255, 255, 1);
    transform: scale(1.05);
}

/* Dashboard specific styles */
.dashboard-card {
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: none;
    box-shadow: var(--shadow-light);
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.dashboard-card h3 {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.dashboard-card p {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 500;
    margin-bottom: 0;
}

/* Enhanced Form Styles */
.form-control {
    border-radius: var(--border-radius);
    border: 2px solid #e9ecef;
    transition: var(--transition);
    padding: 0.75rem 1rem;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 87, 127, 0.25);
}

.form-label {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 500;
    color: var(--primary-color);
}

/* Enhanced Table Styles */
.table {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.table thead th {
    background: var(--gradient-primary);
    color: white;
    border: none;
    font-weight: 600;
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

.table tbody tr:hover {
    background-color: rgba(13, 87, 127, 0.05);
}

.table tbody td {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Footer Enhancement */
footer {
    background: var(--primary-color);
    color: white;
    padding: 3rem 0 2rem;
}

.footer {
    background: var(--gradient-primary);
    color: white;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer h5, .footer h6 {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer p, .footer li {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.8;
}

.footer a {
    transition: var(--transition);
}

.footer a:hover {
    color: var(--secondary-color) !important;
    text-decoration: none;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    transition: var(--transition);
    margin-right: 0.5rem;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 2rem 0;
}

/* Enhanced Navigation */
.navbar {
    background: var(--gradient-primary) !important;
    box-shadow: var(--shadow-medium);
    padding: 1rem 0;
}

.navbar-brand {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: white !important;
}

.navbar-nav .nav-link {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 1rem !important;
}

.navbar-nav .nav-link:hover {
    color: var(--secondary-color) !important;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
}

.dropdown-menu {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    border: none;
    padding: 0.5rem 0;
}

.dropdown-item {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    padding: 0.75rem 1.5rem;
    transition: var(--transition);
}

.dropdown-item:hover {
    background: var(--gradient-primary);
    color: white;
}

/* Enhanced Alert Styles */
.alert {
    border-radius: var(--border-radius);
    border: none;
    box-shadow: var(--shadow-light);
    margin-bottom: 2rem;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.alert-success {
    background: linear-gradient(135deg, #27AE60, #2ECC71);
    color: white;
}

.alert-danger {
    background: linear-gradient(135deg, #E74C3C, #C0392B);
    color: white;
}

.alert-warning {
    background: linear-gradient(135deg, var(--secondary-color), #f4d03f);
    color: var(--primary-color);
}

.alert-info {
    background: var(--gradient-primary);
    color: white;
}

/* Status Badge Styles */
.status-badge {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
}

.status-draft { background-color: #6c757d; color: white; }
.status-submitted { background-color: var(--primary-color); color: white; }
.status-under_review { background-color: var(--secondary-color); color: var(--primary-color); }
.status-shortlisted { background-color: #17a2b8; color: white; }
.status-interview_scheduled { background-color: #fd7e14; color: white; }
.status-accepted { background-color: #28a745; color: white; }
.status-rejected { background-color: #dc3545; color: white; }

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}


.social-links a:hover > i {
    color: #0d577f;
}

/* Print Styles */
@media print {
    .navbar,
    .btn,
    .hero-buttons,
    .footer {
        display: none !important;
    }
    
    .card {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }
} 

/* Process Section Specific Styles */
.process-section .section-title {
    color: var(--primary-color) !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.process-section .section-subtitle {
    color: var(--primary-color) !important;
    font-weight: 500;
}

/* Eligibility Section Specific Styles */
.eligibility-section .section-title {
    color: white !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.eligibility-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 400;
} 

/* Flash Messages - Sleek Overlay */
.flash-overlay {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    pointer-events: none;
}

.flash-message {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    margin-bottom: 12px;
    padding: 16px 20px;
    min-width: 320px;
    max-width: 480px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-left: 4px solid;
    pointer-events: auto;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 500;
    transform: translateX(100%);
    opacity: 0;
}

.flash-success {
    border-left-color: var(--success-color);
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
}

.flash-error {
    border-left-color: var(--danger-color);
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
}

.flash-warning {
    border-left-color: var(--warning-color);
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
}

.flash-info {
    border-left-color: var(--primary-color);
    background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
}

.flash-content {
    display: flex;
    align-items: center;
    flex: 1;
    margin-right: 12px;
}

.flash-icon {
    font-size: 1.2rem;
    margin-right: 12px;
    flex-shrink: 0;
}

.flash-success .flash-icon {
    color: var(--success-color);
}

.flash-error .flash-icon {
    color: var(--danger-color);
}

.flash-warning .flash-icon {
    color: var(--warning-color);
}

.flash-info .flash-icon {
    color: var(--primary-color);
}

.flash-text {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.4;
    flex: 1;
}

.flash-close {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.flash-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #333;
}

/* Flash Message Animations */
@keyframes slideInDown {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutUp {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Responsive Flash Messages */
@media (max-width: 768px) {
    .flash-overlay {
        top: 10px;
        right: 10px;
        left: 10px;
    }
    
    .flash-message {
        min-width: auto;
        max-width: none;
        width: 100%;
    }
} 

/* Empty State Styling */
.empty-state {
    padding: 2rem 1rem;
}

.empty-state i {
    color: #dee2e6;
    margin-bottom: 1rem;
}

.empty-state h6 {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-weight: 600;
    color: #6c757d;
}

.empty-state p {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #6c757d;
    max-width: 400px;
    margin: 0 auto;
    line-height: 1.6;
}

.empty-state .btn {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.empty-state .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
} 