/* -------------------------------------------------------------------------- */
/*                               RESET & BASICS                               */
/* -------------------------------------------------------------------------- */

:root {
    /* Brand Colors (derived from or overriding style.css for specific landing needs) */
    --brand-blue-dark: #0f172a;
    /* Slate 900 equivalent for deep header */
    --brand-blue-primary: #0066ff;
    /* Vibrant blue for primary actions */
    --brand-blue-hover: #0052cc;
    --brand-text-main: #1e293b;
    /* Slate 800 */
    --brand-text-muted: #64748b;
    /* Slate 50 */
    --brand-bg-light: #f8fafc;
    /* Slate 50 */

    --container-width: 1200px;
    --section-padding: 5rem 1.5rem;
    --border-radius-card: 12px;
    --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
}

/* Ensure box-sizing is global (usually in style.css but good to be safe) */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    color: var(--brand-text-main);
    line-height: 1.6;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    /* Override style.css center alignment */
    min-height: 100vh;
}

main {
    flex: 1 0 auto;
    width: 100%;
}

h1 {
    font-family: var(--font-serif);
    line-height: 1.2;
    margin-top: 0;
}

h2,
h3,
h4 {
    line-height: 1.2;
    margin-top: 0;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--brand-text-main);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--brand-text-muted);
}

/* Utility classes */
.text-white {
    color: white !important;
}

/* -------------------------------------------------------------------------- */
/*                                 NAVIGATION                                 */
/* -------------------------------------------------------------------------- */

/* Nav styling adjustments to overlay on dark hero or stand alone */
.nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 101;
    /* Higher than nav-underlay (90) so menu sits on top */
    padding: 1.5rem 0;
}

.nav__container {
    /* Ensures the nav stays within bounds and aligns with rest of page */
    display: flex;
    flex-direction: column;
    /* Allows mobile menu to sit outside if needed, though we use fixed */
}

.nav__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav__logo a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: white;
    /* White on dark hero */
    text-decoration: none;
    line-height: 1;
}

.nav__logo svg {
    display: block;
    /* Removes any line-height gaps */
}

.nav__logo svg rect {
    fill: var(--brand-blue-primary);
}

.nav__items {
    display: none;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav__items li {
    display: flex;
    align-items: center;
}

.nav__items li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    font-size: 0.95rem;
    display: block;
}

.nav__items li a:hover {
    color: white;
}

.nav__toggle {
    /* Mobile only "Information" link container */
    display: block;
}

/* Removed unused mobile menu styles (nav-active, nav-underlay, nav__mobile) */

@media (min-width: 768px) {
    .nav__items {
        display: flex;
    }

    .nav__toggle {
        display: none;
    }
}


/* -------------------------------------------------------------------------- */
/*                                HERO SECTION                                */
/* -------------------------------------------------------------------------- */

.hero {
    background-color: var(--brand-blue-dark);
    /* Add a subtle gradient or pattern if desired */
    background-image: linear-gradient(to bottom right, #0f172a, #1e293b);
    color: white;
    padding-top: 10rem;
    /* Increased space for header breathing room */
    padding-bottom: 6rem;
    text-align: center;
}

.hero__content {
    max-width: 900px;
    margin: 0 auto;
}

.hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.text-highlight {
    color: #60a5fa;
    /* Lighter blue for contrast on dark bg */
    background: linear-gradient(120deg, #60a5fa 0%, #93c5fd 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero__subtitle {
    font-size: 1.25rem;
    color: #cbd5e1;
    /* Slate 300 */
    margin-bottom: 2.5rem;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.hero-btn {
    min-width: 160px;
}

.btn-outline-white {
    border-color: rgba(255, 255, 255, 0.3) !important;
    color: white !important;
}

.btn-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border-color: white !important;
}


/* -------------------------------------------------------------------------- */
/*                              FEATURES SECTION                              */
/* -------------------------------------------------------------------------- */

.features {
    background-color: var(--brand-bg-light);
    padding: var(--section-padding);
}

.features-group {
    margin-bottom: 4rem;
}

.group-title {
    font-size: 1.5rem;
    color: var(--brand-text-muted);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
    font-weight: 700;
    border-left: 4px solid var(--brand-blue-primary);
    padding-left: 1rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.section-white {
    background-color: white;
    padding: var(--section-padding);
}

.card {
    background: white;
    border-radius: var(--border-radius-card);
    border: 1px solid #e2e8f0;
    padding: 2rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: #cbd5e1;
}

.card-icon {
    margin-bottom: 1rem;
    display: inline-flex;
    padding: 0.75rem;
    background: #eff6ff;
    /* very light blue bg */
    color: var(--brand-blue-primary);
    border-radius: 12px;
}

.card-icon svg {
    width: 24px;
    height: 24px;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--brand-text-muted);
    font-size: 0.95rem;
}


/* -------------------------------------------------------------------------- */
/*                               PRICING SECTION                              */
/* -------------------------------------------------------------------------- */

.pricing {
    background-color: white;
    padding: var(--section-padding);
}


.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    align-items: stretch;
}

.pricing-card {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius-card);
    padding: 2rem;
    background: white;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.pricing-card:not(.pricing-card--pro):hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
    border-color: #cbd5e1;
}

.pricing-card--pro {
    border: none;
    background: var(--brand-blue-dark);
    color: white;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.pricing-card--pro:hover {
    box-shadow: 0 25px 30px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.05);
}

.pricing-card--pro .pricing-header {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.pricing-card--pro .pricing-header .price {
    color: white;
}

.pricing-card--pro .pricing-header .period,
.pricing-card--pro .pricing-header .price-desc {
    color: rgba(255, 255, 255, 0.7);
}

.pricing-card--pro .feature-list li {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-card--pro .feature-list li::before {
    color: #60a5fa;
    /* Light blue for checkmarks */
}

.popular-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    left: auto;
    transform: none;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    padding: 0.35rem 0.85rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f1f5f9;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pricing-header .price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--brand-text-main);
}

.pricing-header .period {
    font-size: 1rem;
    font-weight: 400;
    color: var(--brand-text-muted);
}

.pricing-header .price-desc {
    color: var(--brand-text-muted);
    margin-top: 0.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

.feature-list li {
    margin-bottom: 1rem;
    padding-left: 1.75rem;
    position: relative;
    color: var(--brand-text-main);
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--brand-blue-primary);
    font-weight: bold;
}

.pricing-action {
    margin-top: auto;
    text-align: center;
}

/* -------------------------------------------------------------------------- */
/*                                   FOOTER                                   */
/* -------------------------------------------------------------------------- */

.footer {
    background-color: var(--brand-text-main);
    /* Dark footer */
    color: white;
    padding: 3rem 0;
    width: 100%;
    margin-top: auto;
    /* Push to bottom if content is short */
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    /* Ensure content takes full container width */
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.footer-copy {
    color: #94a3b8;
    font-size: 0.875rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    width: 100%;
    max-width: 400px;
    /* Limit width of line */
}

/* Spacing & Typography Utilities */
.mt-4 {
    margin-top: 1rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mt-8 {
    margin-top: 2rem;
}

.pl-5 {
    padding-left: 1.25rem;
}

.list-disc {
    list-style-type: disc;
}

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

.text-sm {
    font-size: 0.875rem;
}

.text-gray-500 {
    color: #64748b;
}

.font-bold {
    font-weight: 700;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background-color: #e2e8f0;
    color: #475569;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.text-blue-600 {
    color: #2563eb;
}

.underline {
    text-decoration: underline;
}

/* -------------------------------------------------------------------------- */
/*                           POLICY / LEGAL PAGES                             */
/* -------------------------------------------------------------------------- */

.policy-hero {
    padding-top: 8rem;
    padding-bottom: 4rem;
}

.policy-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    display: inline-block;
}

.policy-summary {
    background-color: var(--brand-bg-light);
    padding: var(--section-padding);
}

.policy-sections {
    padding: var(--section-padding);
}

.policy-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: stretch;
}

.policy-card {
    background: white;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--border-radius-card);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.policy-card h2,
.policy-card h3 {
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--brand-text-main);
}

.policy-card h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
}

.policy-card h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
}

.policy-card h2:first-child,
.policy-card h3:first-child {
    margin-top: 0;
}

.policy-card p {
    margin: 0;
    color: var(--brand-text-muted);
}

.policy-list {
    padding-left: 1.25rem;
    margin: 0;
    color: var(--brand-text-muted);
}

.policy-list li {
    margin-bottom: 0.75rem;
}

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

/* Login & Signup Page Styles */
.login,
.signup {
    padding-top: 4rem;
    padding-bottom: 6rem;
    min-height: 60vh;
    display: flex;
    justify-content: center;
    background-color: var(--brand-bg-light);
}

.login__container,
.signup__container {
    width: 100%;
    max-width: 600px;
    padding: var(--space-large);
    background-color: white;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-soft);
    z-index: 2;
    position: relative;
}

.login .login__container,
.signup .signup__container {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.login__header,
.signup__header {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.login h3,
.signup h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0;
    text-align: center;
    color: var(--brand-text-main);
}

.login__brand {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background-color: #eef2ff;
    color: var(--brand-blue-primary);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

.login__subhead,
.signup__subhead {
    font-size: 0.95rem;
    color: var(--brand-text-muted);
    margin: 0;
    max-width: 360px;
}

.logo {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

/* Form Styles */
.label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 0.5rem;
    margin-top: 1rem;
}

.input {
    display: block;
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--color-text);
    background-color: var(--color-white);
    background-clip: padding-box;
    border: 1px solid var(--color-border);
    border-radius: 0.375rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    box-sizing: border-box;
    /* Ensure padding doesn't affect width */
}

.input:focus {
    border-color: var(--color-primary);
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
}

.login .input,
.signup .input,
.signup select {
    border: 1px solid transparent;
    background-color: transparent;
    padding-left: 0;
    padding-right: 0;
    box-shadow: none;
}

.login .input:focus,
.signup .input:focus,
.signup select:focus {
    border-color: transparent;
    box-shadow: none;
}

.signup select {
    appearance: none;
    padding-left: 0;
}

/* Button Styles */
.login__form,
.signup__form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.login__field,
.signup__field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 0.85rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius-small);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.login__field:focus-within,
.signup__field:focus-within {
    border-color: #93c5fd;
    box-shadow: 0 10px 20px rgba(148, 163, 184, 0.25);
    background-color: #fff;
}

.login__field .input,
.signup__field .input,
.signup__field select {
    border: 1px solid var(--color-stone);
    padding-left: var(--space-small);
}

.login__field:focus-within .input,
.signup__field:focus-within .input {
    border: 1px solid var(--color-stone);
    padding-left: var(--space-small);
}


.login__helper,
.signup__helper {
    text-align: right;
    font-size: 0.85rem;
    color: var(--brand-text-muted);
}

.signup__helper a {
    color: var(--brand-blue-primary);
    text-decoration: none;
}

.signup__helper a:hover {
    text-decoration: underline;
}

.login__forgot {
    color: var(--brand-blue-primary);
    font-weight: 500;
    text-decoration: none;
    font-size: 0.9rem;
}

.login__forgot:hover {
    color: var(--brand-blue-hover);
    text-decoration: underline;
}

.login__form-button,
.signup__form-button {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.login__form-button .lbtn,
.signup__form-button .lbtn {
    width: 100%;
}

.login__submit,
.signup__submit {
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.2);
}

.login__loading,
.signup__loading {
    font-size: 0.95rem;
    color: var(--brand-text-muted);
    display: flex;
    justify-content: center;
}

.login__loading-dot svg,
.signup__loading-dot svg {
    width: 2rem;
    height: 2rem;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.4);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.6;
    }
}

.lbtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.375rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.lbtn--primary {
    color: #fff;
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.lbtn--primary:hover {
    background-color: var(--brand-blue-hover);
    border-color: var(--brand-blue-hover);
}

.lbtn--secondary {
    color: var(--color-text);
    background-color: #fff;
    border-color: var(--color-border);
}

.lbtn--secondary:hover {
    background-color: #f3f4f6;
    border-color: #d1d5db;
}

.lbtn--md {
    padding: 0.5rem 1rem;
    font-size: 1rem;
}

/* Google Sign In */
.login__google,
.signup__google {
    display: flex;
    justify-content: center;
    margin-top: 1.25rem;
    padding: 0;
}

.login__google .lbtn,
.signup__google .lbtn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.login__google-btn {
    border-color: #e2e8f0;
    background-color: #f8fafc;
    color: var(--brand-text-main);
}

.login__google-btn:hover {
    border-color: #cbd5e1;
    background-color: #eef2ff;
}

.login__divider,
.signup__divider {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--brand-text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.login__divider::before,
.login__divider::after,
.signup__divider::before,
.signup__divider::after {
    content: "";
    height: 1px;
    flex: 1;
    background-color: #e2e8f0;
}

.login__support-text,
.signup__support-text {
    display: flex;
    justify-content: center;
    gap: 0.35rem;
    font-size: 0.9rem;
    color: var(--brand-text-muted);
}

.login__support-text a,
.signup__support-text a {
    color: var(--brand-blue-primary);
    text-decoration: none;
    font-weight: 500;
}

.login__support-text a:hover,
.signup__support-text a:hover {
    text-decoration: underline;
}

.signin_form_response__container,
.signup_form_response__container {
    min-height: 1.5rem;
    text-align: center;
    color: var(--brand-text-main);
    font-weight: 500;
}

/* Utilities */
.hidden {
    display: none !important;
}

.required {
    color: #dc2626;
    margin-left: 0.25rem;
}

.password-reset-request-success,
.password-reset-success {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.password-reset-request-success h2,
.password-reset-success h2 {
    font-weight: bold;
    font-size: var(--font-size-large);
    color: var(--primary);
    margin: var(--space-small) 0;
}

.password-reset-success p {
    margin: var(--space-small) 0;
}

/* -------------------------------------------------------------------------- */
/*                              ALERT COMPONENT                               */
/* -------------------------------------------------------------------------- */

.alert {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    position: relative;
}

.alert__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.125rem;
}

.alert__content {
    flex: 1;
    min-width: 0;
}

.alert__title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.alert__message {
    font-size: 0.9rem;
}

.alert__close {
    flex-shrink: 0;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    margin: -0.25rem -0.25rem -0.25rem 0;
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

.alert__close:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

/* Alert Types */
.alert--error {
    background-color: #fef2f2;
    border-color: #fecaca;
    color: #991b1b;
}

.alert--error .alert__icon {
    color: #dc2626;
}

.alert--error .alert__close:hover {
    background-color: #fee2e2;
}

.alert--warning {
    background-color: #fffbeb;
    border-color: #fde68a;
    color: #92400e;
}

.alert--warning .alert__icon {
    color: #f59e0b;
}

.alert--warning .alert__close:hover {
    background-color: #fef3c7;
}

.alert--info {
    background-color: #eff6ff;
    border-color: #bfdbfe;
    color: #1e40af;
}

.alert--info .alert__icon {
    color: #3b82f6;
}

.alert--info .alert__close:hover {
    background-color: #dbeafe;
}

.alert--success {
    background-color: #f0fdf4;
    border-color: #bbf7d0;
    color: #166534;
}

.alert--success .alert__icon {
    color: #16a34a;
}

.alert--success .alert__close:hover {
    background-color: #dcfce7;
}

/* Alert Transitions */
.alert-enter {
    transition: all 0.3s ease-out;
}

.alert-enter-start {
    opacity: 0;
    transform: translateY(-0.5rem);
}

.alert-enter-end {
    opacity: 1;
    transform: translateY(0);
}

.alert-leave {
    transition: all 0.2s ease-in;
}

.alert-leave-start {
    opacity: 1;
    transform: translateY(0);
}

.alert-leave-end {
    opacity: 0;
    transform: translateY(-0.5rem);
}