/* Custom styles inspired by Coral Capital for Dair Capital Website */

/* Typography */
.serif-heading {
    font-family: 'Times New Roman', 'Georgia', serif;
    letter-spacing: -0.03em;
}

body {
    font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Ensure all page titles and section headers use serif */
h1, h2, .page-title, .hero-heading {
    font-family: 'Times New Roman', 'Georgia', serif;
}

/* Ensure body text uses Roboto */
p, .card-body, .stat-label {
    font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

/* Ensure all buttons use Montserrat Light */
.btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}

/* Custom financial colors - inspired by Coral Capital's color scheme */
:root {
    --finance-navy: #0a2e6f; /* Lighter navy blue */
    --finance-dark-navy: #011d53; /* Dark navy */
    --finance-light-blue: #5a7ec1; /* Light blue accent */
    --finance-accent: #ffffff; /* White accents */
    --finance-gray: #2d2d2d; /* Dark gray for text */
    --finance-light-gray: #f5f2e9; /* Light beige for backgrounds */
    --finance-card-bg: #f9f6ed; /* Beige for card backgrounds */
}

/* Clean minimalist hero section with background image */
.hero-section {
    background-image: linear-gradient(rgba(10, 46, 111, 0.7), rgba(10, 46, 111, 0.8)), url('../img/backgrounds/hero-background.jpeg');
    background-size: cover;
    background-position: center;
    padding: 12rem 0 8rem;
    color: white;
    position: relative;
}

.hero-section:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, rgba(10, 46, 111, 0), rgba(10, 46, 111, 1));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-heading {
    font-size: 4rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subheading {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    max-width: 600px;
}

/* Section headers */
.section-header {
    padding: 7rem 0 3rem;
    background-color: var(--finance-navy);
    color: white;
    position: relative;
}

/* Market Commentary text justification */
section[style*="background-color: var(--finance-navy)"] p {
    text-align: justify;
}

/* Override for centered subtitle */
section[style*="background-color: var(--finance-navy)"] .subtitle-centered {
    text-align: center !important;
}

/* About section header with Baltimore coastal background */
.about-header {
    background-image: linear-gradient(rgba(10, 46, 111, 0.6), rgba(10, 46, 111, 0.75)), url('../img/backgrounds/baltimore.jpg');
    background-size: cover;
    background-position: center;
    padding: 8rem 0 4rem;
    color: white;
    position: relative;
}

.about-header:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, rgba(10, 46, 111, 0), rgba(10, 46, 111, 1));
    z-index: 1;
}

.about-header .container {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.page-subtitle {
    font-weight: 300;
    max-width: 700px;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Spacer for top margins - used in pages without hero sections */
.spacer-section {
    padding-top: 80px; /* Additional space to account for fixed navbar */
    background-color: var(--finance-light-gray); /* Creamy background to match platform styling */
}

/* Specific spacing for the Performance page */
.performance-overview-section {
    padding-top: 40px;
}

/* Contact page background */
.contact-section {
    background-image: linear-gradient(rgba(10, 46, 111, 0.7), rgba(10, 46, 111, 0.8)), url('../img/backgrounds/contact-background.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 5rem 0;
    position: relative;
}

/* Reports page background */
.reports-section {
    background-image: linear-gradient(rgba(90, 126, 193, 0.7), rgba(90, 126, 193, 0.8)), url('../img/backgrounds/mount-leinster.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 5rem 0;
    position: relative;
}

/* Media section background */
.media-section {
    background-image: linear-gradient(rgba(90, 126, 193, 0.7), rgba(90, 126, 193, 0.8)), url('../img/backgrounds/baltimore.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 5rem 0;
    position: relative;
}

/* Content sections */
.content-section {
    padding: 5rem 0;
    background-color: var(--finance-light-gray);
}


.content-section-dark {
    background-color: var(--finance-navy);
    color: white;
    padding: 3rem 0;
}


/* Card styles */
.card {
    border: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-body {
    padding: 2rem;
}

/* Contact form card - Navy blue styling */
.contact-section .card {
    background-color: var(--finance-navy);
    color: white;
}

.contact-section .card .form-label {
    color: white;
    font-weight: 500;
}

.contact-section .card .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.contact-section .card .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-section .card .form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--finance-light-blue);
    box-shadow: 0 0 0 0.2rem rgba(90, 126, 193, 0.25);
    color: white;
}

.contact-section .card h3 {
    color: white;
}

/* Contact form button */
.btn-finance {
    background-color: var(--finance-light-blue);
    border-color: var(--finance-light-blue);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-finance:hover {
    background-color: #4a6bb5;
    border-color: #4a6bb5;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(90, 126, 193, 0.3);
}

/* Team member cards */
.team-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-image-container {
    height: 230px;
    overflow: hidden;
    background-color: var(--finance-light-gray);
}

.team-image {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center top;
}




.team-info {
    padding: 1.2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.team-name {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.team-position {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 0.8rem;
}

.team-bio {
    font-size: 0.85rem;
    color: #333;
    line-height: 1.4;
    display: block;
    overflow: auto;
}

/* Navbar styling */
.navbar {
    padding: 0.3rem 0;
    transition: all 0.3s ease;
    background-color: transparent;
}

.navbar.scrolled {
    background-color: var(--finance-navy);
    padding: 0.3rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Force blue navbar on specific pages */
body.performance-page .navbar,
body.reports-page .navbar,
body.contact-page .navbar {
    background-color: var(--finance-navy);
}

.navbar-brand {
    font-weight: 600;
    letter-spacing: -0.03em;
    padding: 0;
}

.navbar-brand img {
    display: block;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    padding: 0.25rem 1rem !important;
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: rgba(255, 255, 255, 0.8);
}


/* Footer styling */
.footer {
    background-color: var(--finance-dark-navy);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 2rem;
}

.footer h6 {
    color: white;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

/* Button styling */
.btn-primary {
    background-color: var(--finance-light-blue);
    border-color: var(--finance-light-blue);
    padding: 0.75rem 2rem;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #3b5998;
    border-color: #3b5998;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 89, 152, 0.2);
}

.btn-outline-light {
    border-width: 2px;
    padding: 0.75rem 2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}

.btn-outline-light:hover {
    transform: translateY(-2px);
}

.btn-nav-style {
    background: transparent !important;
    border: 1px solid white !important;
    border-radius: 6px !important;
    color: white !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 0.95rem !important;
    font-weight: 300 !important;
    padding: 0.5rem 1rem !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
}

.btn-nav-style:hover {
    color: var(--finance-navy) !important;
    background-color: white !important;
    border-color: white !important;
    transform: none !important;
}

/* Mobile-only fixes */
@media (max-width: 767.98px) {
    /* Fix 1: Add gap between hero buttons on mobile */
    .hero-section .btn-outline-light {
        margin-top: 0.75rem;
    }
    
    /* Fix 2: Make report button narrower and align height on mobile */
    .btn-nav-style {
        padding: 0.4rem 0.75rem !important;
        font-size: 0.85rem !important;
        line-height: 1.2 !important;
        white-space: nowrap !important;
        align-self: flex-end !important;
    }
    
    /* Ensure the flex container on mobile aligns items properly */
    .d-flex.justify-content-between.align-items-end {
        align-items: flex-end !important;
    }
}

/* Animated stats */
.stat-container {
    padding: 3rem 0;
}

.stat-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 200;
    color: white;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Chart containers */
.chart-container {
    background-color: var(--finance-card-bg);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    min-height: 400px;
}

.chart-title {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: var(--finance-gray);
}

/* Modern Report cards */
.modern-report-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.modern-report-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}


.modern-report-card .report-date {
    font-size: 0.875rem;
    color: #8e9aaf;
    margin-bottom: 1rem;
    font-weight: 400;
}

.modern-report-card .report-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.modern-report-card .report-description {
    color: #718096;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.btn-modern-primary {
    background: #667eea;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.875rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
    margin-top: auto;
}

.btn-modern-primary:hover {
    background: #5a67d8;
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
}

.btn-modern-disabled {
    background: #e2e8f0;
    color: #a0aec0;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.875rem;
    display: inline-block;
    cursor: default;
    margin-top: auto;
    pointer-events: none;
}

/* Research & Insights Section Styles */
.research-insights-section {
    background-color: var(--finance-light-gray);
    color: var(--finance-gray);
    padding: 5rem 0;
}

.insights-card {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.insights-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.insights-card .card-icon {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.insights-card.monthly-updates .card-icon {
    background: var(--finance-navy);
}

.insights-card.quarterly-reports .card-icon {
    background: var(--finance-navy);
}

.insights-card .card-icon i {
    color: white;
    font-size: 1.1rem;
}

.insights-card .card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.insights-card .card-subtitle {
    font-size: 0.875rem;
    color: #718096;
    margin-bottom: 1rem;
    font-weight: 400;
}

.insights-card .card-description {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.btn-insights-primary {
    background: var(--finance-navy);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
    margin-top: auto;
    width: 100%;
    text-align: center;
}

.btn-insights-primary:hover {
    background: var(--finance-dark-navy);
    color: white;
    text-decoration: none;
}

.btn-insights-secondary {
    background: var(--finance-navy);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
    margin-top: auto;
    width: 100%;
    text-align: center;
}

.btn-insights-secondary:hover {
    background: var(--finance-dark-navy);
    color: white;
    text-decoration: none;
}

/* Legacy Report cards - keep for backward compatibility */
.report-card {
    border-radius: 8px;
    border: none;
    background-color: var(--finance-card-bg);
    padding: 0;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.report-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-heading {
        font-size: 3rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .stat-value {
        font-size: 2.5rem;
    }
    
    .content-section, .content-section-dark {
        padding: 4rem 0;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 8rem 0 6rem;
    }
    
    .hero-heading {
        font-size: 2.5rem;
    }
    
    .team-image-container {
        height: 300px;
    }
}

/* Service icons and cards */
.service-icon {
    color: var(--finance-light-blue) !important;
}

.service-card h3.h4 {
    font-family: 'Montserrat', sans-serif;
    min-height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
}

.service-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    color: white;
    background-color: var(--finance-navy);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card .card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: flex-start;
    padding: 1.5rem 1rem; /* Reduced padding from 2rem to 1.5rem */
}

.service-card .card-body p {
    font-weight: 300;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-card:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--finance-light-blue);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover:after {
    transform: scaleX(1);
}

/* Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards;
    backface-visibility: hidden;
    perspective: 1000px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Focus-in animation for services section */
.focus-in-viewport {
    opacity: 0;
    animation: none;
    transform: scale(0.95);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.focus-in-viewport.visible {
    opacity: 1;
    transform: scale(1);
}

@keyframes focusIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* Performance page styling */
.performance-header {
    background-color: var(--finance-navy);
    color: white;
    padding: 8rem 0 4rem;
    position: relative;
}

.performance-header h1 {
    color: white;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.performance-header p.lead {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Improve text legibility in dark bg sections */
.bg-dark h2, 
.bg-dark .serif-heading {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.bg-dark p,
.bg-dark .lead {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.bg-dark .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Performance Overview section with lighter blue color */
.performance-overview-section {
    background-color: var(--finance-light-blue); /* Lighter blue to match navbar */
    color: white;
    padding: 4rem 0;
    border-radius: 10px; /* Slightly increased border radius */
    margin-bottom: 2rem;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12); /* Enhanced shadow */
}

.performance-overview-section h2 {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.performance-overview-section p.lead {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Performance stat boxes */
.stat-box {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Mobile-specific styling for Research/Insights page author section */
@media (max-width: 767.98px) {
    /* Hide the request access button on mobile */
    .d-flex.justify-content-between.align-items-end .btn.btn-nav-style {
        display: none !important;
    }
    
    /* Left-align the author info container on mobile */
    .d-flex.justify-content-between.align-items-end {
        justify-content: flex-start !important;
        align-items: flex-start !important;
    }
    
    /* Make the author info text-align left on mobile instead of text-end */
    .d-flex.justify-content-between.align-items-end .text-end {
        text-align: left !important;
    }
}

/* Justify text in Our Story section */
.our-story-text p {
    text-align: justify;
}

/* Justify text in Our Approach section */
.content-section-dark .d-flex p {
    text-align: justify;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background-color: rgba(255, 255, 255, 0.2);
}

.stat-box h5 {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.stat-counter {
    font-size: 2.5rem;
    font-weight: 500;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.text-success {
    color: #4cd964 !important;
}

/* Chart container styles */
.chart-container {
    height: 450px;
    width: 100%;
    margin-bottom: 30px;
    position: relative;
    margin-top: 30px;
}

/* Adjust card padding for charts */
.card-body {
    padding: 2rem 2rem 3rem;
}

/* Subscribe Modal Navy Theme */
.modal-content-navy {
    background-color: var(--finance-dark-navy);
    color: white;
    border: none;
}

.modal-content-navy .modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.modal-content-navy .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.modal-content-navy .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.modal-content-navy .form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--finance-light-blue);
    box-shadow: 0 0 0 0.2rem rgba(90, 126, 193, 0.25);
    color: white;
}

.modal-content-navy .form-label {
    color: white;
    font-weight: 500;
}

.modal-content-navy .btn-primary {
    background-color: transparent !important;
    border: 1px solid white !important;
    color: white !important;
    font-weight: 500;
}

.modal-content-navy .btn-primary:hover {
    background-color: white !important;
    border-color: white !important;
    color: var(--finance-dark-navy) !important;
    transform: none !important;
    box-shadow: none !important;
}

/* Toast Notification System */
.toast-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 9999;
    pointer-events: none;
}

.toast-notification {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 16px 20px;
    margin-bottom: 12px;
    min-width: 320px;
    max-width: 400px;
    display: flex;
    align-items: center;
    gap: 12px;
    pointer-events: auto;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s ease;
    border-left: 4px solid #28a745;
}

.toast-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-notification.error {
    border-left-color: #dc3545;
}

.toast-notification .toast-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #28a745;
    color: white;
    font-size: 14px;
}

.toast-notification.error .toast-icon {
    background: #dc3545;
}

.toast-notification .toast-content {
    flex: 1;
}

.toast-notification .toast-title {
    font-weight: 600;
    color: #333;
    margin: 0;
    font-size: 14px;
}

.toast-notification .toast-message {
    color: #666;
    margin: 2px 0 0;
    font-size: 13px;
    line-height: 1.4;
}

.toast-notification .toast-close {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1;
}

.toast-notification .toast-close:hover {
    color: #666;
}
