/* /Components/Account/Pages/Login.razor.rz.scp.css */
.login-container[b-6mr6c881gh] {
    display: flex;
    min-height: 100vh;
    background-color: var(--color-surface);
}

.login-sidebar[b-6mr6c881gh] {
    display: none;
    flex: 1;
    background-image: url('images/login-sidebar.png');
    background-size: cover;
    background-position: center;
    position: relative;
}

.login-sidebar[b-6mr6c881gh]::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26, 60, 52, 0.3), rgba(26, 60, 52, 0.1));
}

.login-content[b-6mr6c881gh] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    max-width: 100%;
    background-color: var(--color-surface);
}

.login-card[b-6mr6c881gh] {
    width: 100%;
    max-width: 480px;
}

.login-header[b-6mr6c881gh] {
    text-align: center;
    margin-bottom: 2.5rem;
}

.login-header h1[b-6mr6c881gh] {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.login-header p[b-6mr6c881gh] {
    color: var(--color-text-muted);
    font-size: 1.1rem;
}


/* Form control styles are now handled globally in app.css */


.btn-login[b-6mr6c881gh] {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    background-color: var(--color-primary);
    border: none;
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-login:hover[b-6mr6c881gh] {
    background-color: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.login-footer[b-6mr6c881gh] {
    text-align: center;
    margin-top: 2rem;
    color: var(--color-text-muted);
}

.login-footer a[b-6mr6c881gh] {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
}

.login-footer a:hover[b-6mr6c881gh] {
    color: var(--color-accent);
    text-decoration: underline;
}

.divider[b-6mr6c881gh] {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 2rem 0;
    color: var(--color-text-muted);
}

.divider[b-6mr6c881gh]::before,
.divider[b-6mr6c881gh]::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #E5E7EB;
}

.divider span[b-6mr6c881gh] {
    padding: 0 1rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.links-grid[b-6mr6c881gh] {
    display: grid;
    gap: 0.5rem;
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.95rem;
}


/* Checkbox styles are now handled globally in app.css */


/* Tablet and Desktop */
@media (min-width: 992px) {
    .login-sidebar[b-6mr6c881gh] {
        display: block;
        max-width: 50%;
    }

    .login-content[b-6mr6c881gh] {
        max-width: 50%;
    }
}
/* /Components/Booking/BookingWizard.razor.rz.scp.css */
.booking-container[b-b1fkzr6pge] {
    display: flex;
    min-height: 100vh;
    background-color: var(--color-surface);
}

.booking-sidebar[b-b1fkzr6pge] {
    display: none;
    flex: 1;
    background-image: url('images/booking-wizard-dog.png');
    /* The golden retriever image */
    background-size: cover;
    background-position: center;
    position: relative;
}

.booking-sidebar[b-b1fkzr6pge]::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26, 60, 52, 0.3), rgba(26, 60, 52, 0.1));
}

.booking-content[b-b1fkzr6pge] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    max-width: 100%;
    background-color: var(--color-surface);
}

.booking-card[b-b1fkzr6pge] {
    width: 100%;
    max-width: 600px;
    /* Slightly wider than login for the wizard content */
}

/* Tablet and Desktop */
@media (min-width: 992px) {
    .booking-sidebar[b-b1fkzr6pge] {
        display: block;
        max-width: 50%;
    }

    .booking-content[b-b1fkzr6pge] {
        max-width: 50%;
    }
}

/* Wizard Specific Overrides/Adjustments to fit the new card */



/* Enhancing visibility for booking inputs */
[b-b1fkzr6pge] .booking-card .form-control,
[b-b1fkzr6pge] .booking-card .form-select,
[b-b1fkzr6pge] .booking-card textarea {
    border: 1px solid #6B7280 !important;
    /* Gray 500 - Visible but not harsh */
    background-color: #F9FAFB;
    padding: 0.75rem 1rem;
    color: #111827;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    /* Subtle shadow for depth */
    margin-bottom: 1rem;
    /* Add spacing between controls */
}

[b-b1fkzr6pge] .booking-card .form-control:focus,
[b-b1fkzr6pge] .booking-card .form-select:focus,
[b-b1fkzr6pge] .booking-card textarea:focus {
    border-color: var(--color-primary) !important;
    background-color: #FFFFFF;
    box-shadow: 0 0 0 4px rgba(26, 60, 52, 0.15);
}

/* Styling for checkboxes */
[b-b1fkzr6pge] .booking-card .form-check-input {
    width: 1.4em;
    height: 1.4em;
    border: 2px solid #374151;
    /* Dark Gray */
    margin-top: 0.1em;
    cursor: pointer;
}

[b-b1fkzr6pge] .booking-card .form-check-input:checked {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

[b-b1fkzr6pge] .booking-card .form-check-label {
    padding-left: 0.5rem;
    padding-top: 0.2rem;
    cursor: pointer;
    font-size: 1rem;
    color: #374151;
}
/* /Components/Layout/AdminLayout.razor.rz.scp.css */
.admin-layout[b-2q2lb6ukuw] {
    display: flex;
    min-height: 100vh;
    background-color: #111827;
    /* Dark background */
    color: #f3f4f6;
}



.main-content[b-2q2lb6ukuw] {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.top-bar[b-2q2lb6ukuw] {
    background: #1F2937;
    /* Dark surface */
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #374151;
    box-shadow: var(--shadow-sm);
}

.page-title[b-2q2lb6ukuw] {
    font-size: 1.5rem;
    margin: 0;
    color: #F9FAFB;
}

.content-wrapper[b-2q2lb6ukuw] {
    padding: 2rem;
    flex: 1;
    overflow-y: auto;
}

.btn-outline[b-2q2lb6ukuw] {
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #F9FAFB;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    transition: all 0.2s;
}

.btn-outline:hover[b-2q2lb6ukuw] {
    background-color: white;
    color: var(--color-primary);
    border-color: white;
}
/* /Components/Layout/AdminNav.razor.rz.scp.css */
/* Sidebar Container */
.sidebar[b-bcaqff71xt] {
    width: 260px;
    background-color: #111827;
    /* Darker Slate */
    color: #9CA3AF;
    /* Light Gray Text */
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100vh;
    position: sticky;
    top: 0;
    z-index: 50;
    font-family: var(--font-body);
}

.sidebar.collapsed[b-bcaqff71xt] {
    width: 72px;
}

/* Header */
.sidebar-header[b-bcaqff71xt] {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background-color: rgba(0, 0, 0, 0.1);
}

.brand[b-bcaqff71xt] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #F3F4F6;
    text-decoration: none;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    overflow: hidden;
    white-space: nowrap;
}

.logo-icon-sm[b-bcaqff71xt] {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
}

.sidebar.collapsed .brand-text[b-bcaqff71xt] {
    display: none;
}

.badge[b-bcaqff71xt] {
    background-color: var(--color-accent);
    color: white;
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Toggle Button */
.collapse-toggle[b-bcaqff71xt] {
    background: transparent;
    border: none;
    color: #6B7280;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.collapse-toggle:hover[b-bcaqff71xt] {
    color: #F3F4F6;
    background-color: rgba(255, 255, 255, 0.05);
}

.sidebar.collapsed .collapse-toggle[b-bcaqff71xt] {
    margin: 0 auto;
    width: 100%;
}

.sidebar.collapsed .sidebar-header[b-bcaqff71xt] {
    justify-content: center;
    padding: 0;
}

.sidebar.collapsed .brand[b-bcaqff71xt] {
    display: none;
}

/* Navigation */
.sidebar-nav[b-bcaqff71xt] {
    flex: 1;
    padding: 1.5rem 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    overflow-y: auto;
}

[b-bcaqff71xt] .nav-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    color: #F3F4F6 !important;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
    overflow: hidden;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}

[b-bcaqff71xt] .icon {
    width: 24px;
    text-align: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: color 0.2s;
    opacity: 0.9;
}

/* Hover & Active States */
[b-bcaqff71xt] .nav-item:hover {
    background-color: rgba(255, 255, 255, 0.08);
    /* Slightly brighter hover */
    color: white !important;
}

[b-bcaqff71xt] .nav-item:hover .icon {
    color: var(--color-accent);
    opacity: 1;
}

[b-bcaqff71xt] .nav-item.active {
    background-color: var(--color-primary);
    color: white !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

[b-bcaqff71xt] .nav-item.active .icon {
    color: var(--color-accent);
    opacity: 1;
}

/* Collapsed Nav Items */
.sidebar.collapsed[b-bcaqff71xt]  .nav-item {
    justify-content: center;
    padding: 0.75rem;
}

.sidebar.collapsed[b-bcaqff71xt]  .nav-text {
    display: none;
}

/* Nav Dividers */
.nav-divider[b-bcaqff71xt] {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.05);
    margin: 0.5rem 0.75rem;
}

.nav-section-title[b-bcaqff71xt] {
    color: #6B7280;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
    margin: 0.5rem 0.75rem 0.25rem 1rem;
}

.sidebar.collapsed .nav-section-title[b-bcaqff71xt] {
    display: none;
}

/* Footer (User Profile) */
.sidebar-footer[b-bcaqff71xt] {
    padding: 1rem 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background-color: rgba(0, 0, 0, 0.1);
}

.user-profile[b-bcaqff71xt] {
    /* reuse nav-item styles but ensure specific footer spacing if needed */
    margin: 0;
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.public-layout[b-8je6w5g5qf] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.site-header[b-8je6w5g5qf] {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
}

.header-inner[b-8je6w5g5qf] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo[b-8je6w5g5qf] {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.brand-logo i[b-8je6w5g5qf] {
    margin-right: 0.75rem;
    font-size: 1.5rem;
}

.brand-logo[b-8je6w5g5qf] {
    display: flex;
    align-items: center;
}

main[b-8je6w5g5qf] {
    flex: 1;
}

.site-footer[b-8je6w5g5qf] {
    background: #1f2937;
    /* Dark background matching reference */
    color: white;
    padding: 4rem 0 3rem;
    margin-top: auto;
    font-size: 0.9rem;
}

.footer-grid[b-8je6w5g5qf] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
}

.footer-col h3[b-8je6w5g5qf] {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    text-transform: none;
}

.footer-col p[b-8je6w5g5qf] {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-col a[b-8je6w5g5qf] {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col a:hover[b-8je6w5g5qf] {
    color: white;
    text-decoration: underline;
}

.footer-nav[b-8je6w5g5qf] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li[b-8je6w5g5qf] {
    margin-bottom: 0.5rem;
}

.legal-text[b-8je6w5g5qf] {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}
/* Social Media Links */
.social-links[b-8je6w5g5qf] {
    display: flex;
    gap: 1rem;
}

.social-links a[b-8je6w5g5qf] {
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.2s;
}

.social-links a:hover[b-8je6w5g5qf] {
    color: white;
}

/* Partners Section */
.footer-partners[b-8je6w5g5qf] {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-partners h4[b-8je6w5g5qf] {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.partners-grid[b-8je6w5g5qf] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.partners-grid a[b-8je6w5g5qf] {
    display: block;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.partners-grid a:hover[b-8je6w5g5qf] {
    opacity: 1;
}

.partners-grid img[b-8je6w5g5qf] {
    height: 50px;
    width: auto;
    object-fit: contain;
    /* Invert colors or adjust brightness if logos are dark on dark bg */
    /* Since we are using original images, we might need a white background wrapper if they are dark logos */
    background: white;
    padding: 0.5rem;
    border-radius: 4px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .site-footer[b-8je6w5g5qf] {
        padding: 3rem 0;
    }

    .footer-grid[b-8je6w5g5qf] {
        gap: 2rem;
    }

    .footer-partners[b-8je6w5g5qf] {
        margin-top: 3rem;
    }

    .partners-grid[b-8je6w5g5qf] {
        gap: 1.5rem;
    }
    
    .partners-grid img[b-8je6w5g5qf] {
        height: 40px;
    }
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-v3f6jpjqzi] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-v3f6jpjqzi] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-v3f6jpjqzi] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-v3f6jpjqzi] {
    font-size: 1.1rem;
}

.bi[b-v3f6jpjqzi] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-v3f6jpjqzi] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-v3f6jpjqzi] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-v3f6jpjqzi] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.bi-lock-nav-menu[b-v3f6jpjqzi] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath d='M8 1a2 2 0 0 1 2 2v4H6V3a2 2 0 0 1 2-2zm3 6V3a3 3 0 0 0-6 0v4a2 2 0 0 0-2 2v5a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2zM5 8h6a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V9a1 1 0 0 1 1-1z'/%3E%3C/svg%3E");
}

.bi-person-nav-menu[b-v3f6jpjqzi] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person' viewBox='0 0 16 16'%3E%3Cpath d='M8 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm2-3a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm4 8c0 1-1 1-1 1H3s-1 0-1-1 1-4 6-4 6 3 6 4Zm-1-.004c-.001-.246-.154-.986-.832-1.664C11.516 10.68 10.289 10 8 10c-2.29 0-3.516.68-4.168 1.332-.678.678-.83 1.418-.832 1.664h10Z'/%3E%3C/svg%3E");
}

.bi-person-badge-nav-menu[b-v3f6jpjqzi] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person-badge' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 2a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-3zM11 8a3 3 0 1 1-6 0 3 3 0 0 1 6 0z'/%3E%3Cpath d='M4.5 0A2.5 2.5 0 0 0 2 2.5V14a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2.5A2.5 2.5 0 0 0 11.5 0h-7zM3 2.5A1.5 1.5 0 0 1 4.5 1h7A1.5 1.5 0 0 1 13 2.5v10.795a4.2 4.2 0 0 0-.776-.492C11.392 12.387 10.063 12 8 12s-3.392.387-4.224.803a4.2 4.2 0 0 0-.776.492V2.5z'/%3E%3C/svg%3E");
}

.bi-person-fill-nav-menu[b-v3f6jpjqzi] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person-fill' viewBox='0 0 16 16'%3E%3Cpath d='M3 14s-1 0-1-1 1-4 6-4 6 3 6 4-1 1-1 1H3Zm5-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z'/%3E%3C/svg%3E");
}

.bi-arrow-bar-left-nav-menu[b-v3f6jpjqzi] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-arrow-bar-left' viewBox='0 0 16 16'%3E%3Cpath d='M12.5 15a.5.5 0 0 1-.5-.5v-13a.5.5 0 0 1 1 0v13a.5.5 0 0 1-.5.5ZM10 8a.5.5 0 0 1-.5.5H3.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L3.707 7.5H9.5a.5.5 0 0 1 .5.5Z'/%3E%3C/svg%3E");
}

.nav-item[b-v3f6jpjqzi] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-v3f6jpjqzi] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-v3f6jpjqzi] {
        padding-bottom: 1rem;
    }

    .nav-item[b-v3f6jpjqzi]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-v3f6jpjqzi]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-v3f6jpjqzi]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-v3f6jpjqzi] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-v3f6jpjqzi] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-v3f6jpjqzi] {
        display: none;
    }

    .nav-scrollable[b-v3f6jpjqzi] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Components/Layout/PublicNav.razor.rz.scp.css */
/* Shared Nav Styles */
.site-nav[b-ug3pzoy0ci] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link[b-ug3pzoy0ci] {
    font-weight: 500;
    color: var(--color-text-main);
    font-size: 0.95rem;
    transition: color 0.2s;
    text-decoration: none;
    cursor: pointer;
}

.nav-link:hover[b-ug3pzoy0ci] {
    color: var(--color-accent);
}

.btn-sm[b-ug3pzoy0ci] {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-primary[b-ug3pzoy0ci] {
    background-color: var(--color-primary);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-primary:hover[b-ug3pzoy0ci] {
    background-color: var(--color-primary-light);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-outline[b-ug3pzoy0ci] {
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    background: transparent;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-outline:hover[b-ug3pzoy0ci] {
    background: var(--color-primary);
    color: white;
}

/* Mobile Menu Button */
.mobile-menu-btn[b-ug3pzoy0ci] {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}

.mobile-menu-btn .bar[b-ug3pzoy0ci] {
    width: 100%;
    height: 2px;
    background-color: var(--color-primary);
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .mobile-menu-btn[b-ug3pzoy0ci] {
        display: flex;
    }

    .site-nav[b-ug3pzoy0ci] {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);

        flex-direction: column;
        align-items: stretch;
        /* Full width items */
        padding: 1.5rem;
        gap: 1rem;

        /* Animation State: Hidden */
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    }

    .site-nav.active[b-ug3pzoy0ci] {
        /* Animation State: Visible */
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .site-nav a[b-ug3pzoy0ci],
    .site-nav button[b-ug3pzoy0ci] {
        width: 100%;
        text-align: center;
        padding: 0.75rem;
        font-size: 1.1rem;
    }
}
/* /Components/Pages/Contact.razor.rz.scp.css */
.register-container[b-kf2lp8mvtz] {
    display: flex;
    min-height: 100vh;
    background-color: var(--color-surface);
}

.register-sidebar[b-kf2lp8mvtz] {
    display: none;
    flex: 1;
    background-image: url('/images/contact-forest-animals.png');
    background-size: cover;
    background-position: center;
    position: relative;
}

.register-sidebar[b-kf2lp8mvtz]::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26, 60, 52, 0.3), rgba(26, 60, 52, 0.1));
}

.register-content[b-kf2lp8mvtz] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    max-width: 100%;
    background-color: var(--color-surface);
    position: relative;
    overflow: hidden;
}

.register-card[b-kf2lp8mvtz] {
    width: 100%;
    max-width: 480px;
}

.register-header[b-kf2lp8mvtz] {
    text-align: center;
    margin-bottom: 2.5rem;
}

.register-header h1[b-kf2lp8mvtz] {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.register-header p[b-kf2lp8mvtz] {
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

.btn-register[b-kf2lp8mvtz] {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    background-color: var(--color-primary);
    border: none;
    color: white;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.btn-register:hover[b-kf2lp8mvtz] {
    background-color: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Tablet and Desktop */
@media (min-width: 992px) {
    .register-sidebar[b-kf2lp8mvtz] {
        display: block;
        max-width: 50%;
    }

    .register-content[b-kf2lp8mvtz] {
        max-width: 50%;
    }
}

/* Animation Styles */
.success-container[b-kf2lp8mvtz] {
    text-align: center;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeIn-b-kf2lp8mvtz 0.5s ease-out;
}

.plane-container[b-kf2lp8mvtz] {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
}

.paper-plane[b-kf2lp8mvtz] {
    font-size: 4rem;
    color: var(--color-primary);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: flyMessage-b-kf2lp8mvtz 1.5s ease-in-out forwards;
}

.success-message[b-kf2lp8mvtz] {
    font-size: 1.5rem;
    color: var(--color-primary);
    opacity: 0;
    animation: fadeInMessage-b-kf2lp8mvtz 0.8s ease-out 1s forwards;
    margin-bottom: 1rem;
}

.success-subtext[b-kf2lp8mvtz] {
    color: var(--color-text-muted);
    opacity: 0;
    animation: fadeInMessage-b-kf2lp8mvtz 0.8s ease-out 1.5s forwards;
}

@keyframes fadeIn-b-kf2lp8mvtz {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes flyMessage-b-kf2lp8mvtz {
    0% {
        transform: translate(-50%, -50%) scale(0.5) rotate(0deg);
        opacity: 0;
    }

    20% {
        transform: translate(-50%, -50%) scale(1.2) rotate(-10deg);
        opacity: 1;
    }

    40% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        opacity: 1;
    }

    60% {
        transform: translate(100%, -100%) scale(0.8) rotate(45deg);
        opacity: 1;
    }

    100% {
        transform: translate(300%, -300%) scale(0) rotate(45deg);
        opacity: 0;
    }
}

@keyframes fadeInMessage-b-kf2lp8mvtz {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
