/* /Components/AppFooter.razor.rz.scp.css */
.app-footer[b-wkhp4lna08] {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: white;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
    padding-bottom: env(safe-area-inset-bottom);
    border-top: 1px solid #f0f0f0;
}

.footer-nav[b-wkhp4lna08] {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0.5rem 1rem;
    min-height: 60px;
}

.nav-item[b-wkhp4lna08] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem 1.25rem;
    border-radius: 12px;
    min-width: 70px;
    color: #8e8e93;
    position: relative;
}

.nav-item:hover[b-wkhp4lna08] {
    background: rgba(255, 105, 180, 0.1);
    color: #ff69b4;
    transform: translateY(-2px);
}

.nav-item.active[b-wkhp4lna08] {
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.2) 0%, rgba(255, 138, 155, 0.15) 100%);
    color: #ff69b4;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.2);
}

.nav-item.active[b-wkhp4lna08]::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, #ff69b4 0%, #ff8a9b 100%);
    border-radius: 0 0 3px 3px;
}

.nav-icon[b-wkhp4lna08] {
    font-size: 1.25rem;
    margin-bottom: 0.125rem;
    transition: transform 0.3s ease;
}

.nav-item:hover .nav-icon[b-wkhp4lna08] {
    transform: scale(1.1);
}

.nav-item.active .nav-icon[b-wkhp4lna08] {
    transform: scale(1.15);
}

.nav-label[b-wkhp4lna08] {
    font-size: 0.7rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-item.active .nav-label[b-wkhp4lna08] {
    font-weight: 600;
}

/* Small screens */
@media (max-width: 480px) {
    .footer-nav[b-wkhp4lna08] {
        padding: 0.375rem 0.75rem;
        min-height: 50px;
    }
    
    .nav-item[b-wkhp4lna08] {
        padding: 0.375rem 0.75rem;
        min-width: 60px;
    }
    
    .nav-icon[b-wkhp4lna08] {
        font-size: 1.1rem;
        margin-bottom: 0.1rem;
    }
    
    .nav-label[b-wkhp4lna08] {
        font-size: 0.65rem;
    }
}

/* Landscape mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .footer-nav[b-wkhp4lna08] {
        padding: 0.5rem 1rem;
        min-height: 60px;
    }
    
    .nav-item[b-wkhp4lna08] {
        padding: 0.5rem 1rem;
    }
    
    .nav-icon[b-wkhp4lna08] {
        font-size: 1.25rem;
        margin-bottom: 0.125rem;
    }
    
    .nav-label[b-wkhp4lna08] {
        font-size: 0.7rem;
    }
}
/* /Components/AppHeader.razor.rz.scp.css */
.app-header[b-y4omk5p96t] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, #ff69b4 0%, #ff8a9b 100%);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: env(safe-area-inset-top) 0 0 0;
}

.header-content[b-y4omk5p96t] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.5rem;
    min-height: 50px;
}

.logo-section[b-y4omk5p96t] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: transform 0.2s ease;
    outline: none;
}

.logo-section:hover[b-y4omk5p96t] {
    transform: scale(1.02);
}

.logo-section:active[b-y4omk5p96t] {
    transform: scale(0.98);
}

.logo-section:focus[b-y4omk5p96t] {
    outline: none;
}

.logo[b-y4omk5p96t] {
    font-size: 1.75rem;
    line-height: 1;
}

.app-title[b-y4omk5p96t] {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.header-menu[b-y4omk5p96t] {
    position: relative;
}

.menu-btn[b-y4omk5p96t] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 2px;
    padding: 0;
}

.menu-btn:hover[b-y4omk5p96t] {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.menu-btn:active[b-y4omk5p96t] {
    transform: scale(0.95);
}

.menu-dot[b-y4omk5p96t] {
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.menu-overlay[b-y4omk5p96t] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 998;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    transition: all 0.45s cubic-bezier(0.32, 0.72, 0, 1);
    animation: fadeIn-b-y4omk5p96t 0.45s cubic-bezier(0.32, 0.72, 0, 1) forwards;
}

@keyframes fadeIn-b-y4omk5p96t {
    from {
        opacity: 0;
        backdrop-filter: blur(0px);
        -webkit-backdrop-filter: blur(0px);
    }
    to {
        opacity: 1;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
}

.dropdown-menu[b-y4omk5p96t] {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    z-index: 999;
    transform: translateX(100%) scale(1.02);
    opacity: 0;
    transition: all 0.45s cubic-bezier(0.32, 0.72, 0, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
    will-change: transform, opacity;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.dropdown-menu.show[b-y4omk5p96t] {
    transform: translateX(0) scale(1);
    opacity: 1;
}

.menu-header[b-y4omk5p96t] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 1.5rem 1rem;
    border-bottom: 1px solid #f0f0f0;
    background: linear-gradient(135deg, #ff69b4 0%, #ff8a9b 100%);
    color: white;
}

.menu-header h3[b-y4omk5p96t] {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.close-btn[b-y4omk5p96t] {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s ease;
}

.close-btn:hover[b-y4omk5p96t] {
    background: rgba(255, 255, 255, 0.2);
}

.menu-items[b-y4omk5p96t] {
    padding: 1rem 0;
}

.menu-item[b-y4omk5p96t] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: #1d1d1f;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 12px;
    margin: 0 0.75rem;
    width: calc(100% - 1.5rem);
    position: relative;
    overflow: hidden;
}

.menu-item[b-y4omk5p96t]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 105, 180, 0.08);
    opacity: 0;
    transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 12px;
}

.menu-item:hover[b-y4omk5p96t]::before {
    opacity: 1;
}

.menu-item:hover[b-y4omk5p96t] {
    color: #ff69b4;
    transform: scale(1.02);
}

.menu-item:active[b-y4omk5p96t] {
    transform: scale(0.98);
    transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.menu-item.premium[b-y4omk5p96t] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    margin: 0.5rem 1rem;
    border-radius: 12px;
}

.menu-item.premium:hover[b-y4omk5p96t] {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
    color: white;
    padding-left: 1.5rem;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.menu-icon[b-y4omk5p96t] {
    font-size: 1.25rem;
    width: 24px;
    text-align: center;
}

.menu-divider[b-y4omk5p96t] {
    height: 1px;
    background: #e9ecef;
    margin: 1rem 1.5rem;
}

/* Small mobile screens */
@media (max-width: 360px) {
    .app-title[b-y4omk5p96t] {
        font-size: 1.1rem;
    }
    
    .logo[b-y4omk5p96t] {
        font-size: 1.5rem;
    }
    
    .header-content[b-y4omk5p96t] {
        padding: 0.5rem 1rem;
        min-height: 44px;
    }
    
    .menu-btn[b-y4omk5p96t] {
        width: 32px;
        height: 32px;
    }
    
    .dropdown-menu[b-y4omk5p96t] {
        width: 100vw;
    }
}

/* Landscape mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .header-content[b-y4omk5p96t] {
        padding: 0.5rem 1rem;
        min-height: 40px;
    }
    
    .app-title[b-y4omk5p96t] {
        font-size: 1.1rem;
    }
    
    .logo[b-y4omk5p96t] {
        font-size: 1.5rem;
    }
}
/* /Components/BottomNav.razor.rz.scp.css */
.bottom-nav[b-830pd5cwmh] {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
    padding-bottom: calc(0.5rem + env(safe-area-inset-bottom));
    z-index: 100;
    height: 60px;
}

.nav-item[b-830pd5cwmh] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 0.5rem;
    text-decoration: none !important;
    color: #999;
    transition: all 0.3s ease;
    border-radius: 12px;
    min-width: 70px;
    height: 48px;
    position: relative;
    background: transparent;
    cursor: pointer;
}

.coming-soon-badge[b-830pd5cwmh] {
    position: absolute;
    top: -5px;
    right: 10px;
    background: linear-gradient(135deg, #e91e63 0%, #f06292 100%);
    color: white;
    font-size: 0.6rem;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(233, 30, 99, 0.3);
}

.nav-item:hover[b-830pd5cwmh] {
    text-decoration: none;
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
}

.nav-item:hover .nav-icon[b-830pd5cwmh] {
    transform: translateY(-2px);
}

.nav-item.active[b-830pd5cwmh] {
    color: #ff6b6b !important;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.15) 0%, rgba(255, 135, 135, 0.1) 100%) !important;
    box-shadow: 0 3px 10px rgba(255, 107, 107, 0.2);
}

.nav-item.active[b-830pd5cwmh]::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8787 100%);
    border-radius: 0 0 3px 3px;
    animation: slideIn-b-830pd5cwmh 0.3s ease;
}

.nav-item.active .nav-icon[b-830pd5cwmh] {
    transform: scale(1.1);
}

.nav-item.active .nav-label[b-830pd5cwmh] {
    font-weight: 700;
}

@keyframes slideIn-b-830pd5cwmh {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 40px;
        opacity: 1;
    }
}

.nav-icon[b-830pd5cwmh] {
    font-size: 1.25rem;
    margin-bottom: 0.125rem;
    transition: transform 0.3s ease;
}

.nav-label[b-830pd5cwmh] {
    font-size: 0.625rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Desktop styles */
@media (min-width: 768px) {
    .bottom-nav[b-830pd5cwmh] {
        max-width: 600px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 20px 20px 0 0;
        padding: 0.75rem;
        height: 70px;
    }
    
    .nav-item[b-830pd5cwmh] {
        padding: 0.5rem 1.5rem;
        height: 56px;
    }
    
    .nav-icon[b-830pd5cwmh] {
        font-size: 1.5rem;
    }
    
    .nav-label[b-830pd5cwmh] {
        font-size: 0.75rem;
    }
}
/* /Components/CalendarView.razor.rz.scp.css */
.tracking-calendar[b-8ud9flt2ex] {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    margin: 1rem 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 
                0 0 0 1px rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tracking-calendar:hover[b-8ud9flt2ex] {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), 
                0 0 0 1px rgba(255, 255, 255, 0.1);
}

.calendar-header[b-8ud9flt2ex] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(1rem, 3vw, 1.5rem) clamp(1rem, 4vw, 2rem);
    background: linear-gradient(135deg, #ff69b4 0%, #ff8a9b 100%);
    color: white;
}

.month-title[b-8ud9flt2ex] {
    margin: 0;
    font-size: clamp(1.1rem, 4vw, 1.5rem);
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.nav-btn[b-8ud9flt2ex] {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: clamp(36px, 8vw, 44px);
    height: clamp(36px, 8vw, 44px);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: bold;
}

.nav-btn:hover[b-8ud9flt2ex] {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.nav-btn:active[b-8ud9flt2ex] {
    transform: scale(0.95);
}

.calendar-grid[b-8ud9flt2ex] {
    padding: clamp(0.5rem, 3vw, 1.5rem);
}

.weekdays[b-8ud9flt2ex] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: clamp(1px, 0.5vw, 2px);
    margin-bottom: clamp(0.5rem, 2vw, 1rem);
}

.weekday[b-8ud9flt2ex] {
    text-align: center;
    font-weight: 600;
    color: #8e8e93;
    padding: clamp(0.5rem, 1.5vw, 0.75rem) 0;
    font-size: clamp(0.7rem, 2vw, 0.85rem);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.days-grid[b-8ud9flt2ex] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: clamp(1px, 0.5vw, 2px);
}

.day-cell[b-8ud9flt2ex] {
    position: relative;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: clamp(6px, 1.5vw, 12px);
    border: 2px solid transparent;
    min-height: clamp(32px, 11vw, 50px);
}

.day-cell:hover[b-8ud9flt2ex] {
    background: rgba(255, 105, 180, 0.08);
    transform: scale(1.05) translateY(-1px);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.15);
    transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.day-cell:active[b-8ud9flt2ex] {
    transform: scale(0.95);
    transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.day-cell.other-month[b-8ud9flt2ex] {
    background: #fafafa;
    color: #d1d5db;
    cursor: default;
}

.day-cell.other-month:hover[b-8ud9flt2ex] {
    background: #fafafa;
    transform: none;
    box-shadow: none;
}

.day-cell.today[b-8ud9flt2ex] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.day-cell.period-day[b-8ud9flt2ex] {
    background: linear-gradient(135deg, #ff69b4 0%, #ff8a9b 100%);
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
}

.day-cell.has-symptoms[b-8ud9flt2ex] {
    border-color: #fbbf24;
}

.day-number[b-8ud9flt2ex] {
    font-size: clamp(0.75rem, 2.5vw, 1rem);
    font-weight: 500;
    margin-bottom: 2px;
}

.flow-indicator[b-8ud9flt2ex] {
    position: absolute;
    bottom: clamp(2px, 0.5vw, 4px);
    left: 50%;
    transform: translateX(-50%);
    width: clamp(6px, 1.5vw, 8px);
    height: clamp(6px, 1.5vw, 8px);
    border-radius: 50%;
}

.flow-1[b-8ud9flt2ex] { background: rgba(255, 255, 255, 0.3); }
.flow-2[b-8ud9flt2ex] { background: rgba(255, 255, 255, 0.5); }
.flow-3[b-8ud9flt2ex] { background: rgba(255, 255, 255, 0.7); }
.flow-4[b-8ud9flt2ex] { background: rgba(255, 255, 255, 0.9); }
.flow-5[b-8ud9flt2ex] { background: white; }

.symptoms-indicator[b-8ud9flt2ex] {
    position: absolute;
    top: clamp(2px, 0.5vw, 4px);
    right: clamp(2px, 0.5vw, 4px);
    color: #fbbf24;
    font-size: clamp(0.6rem, 1.5vw, 0.75rem);
    font-weight: bold;
}

/* Modal Styles */
.modal-overlay[b-8ud9flt2ex] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1rem 5rem;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    opacity: 0;
    animation: modalOverlayShow-b-8ud9flt2ex 0.4s cubic-bezier(0.32, 0.72, 0, 1) forwards;
}

@keyframes modalOverlayShow-b-8ud9flt2ex {
    from {
        opacity: 0;
        backdrop-filter: blur(0px) saturate(100%);
        -webkit-backdrop-filter: blur(0px) saturate(100%);
    }
    to {
        opacity: 1;
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
    }
}

.day-modal[b-8ud9flt2ex] {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    width: 100%;
    max-width: 500px;
    max-height: calc(100vh - 9rem);
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25), 
                0 0 0 1px rgba(255, 255, 255, 0.05);
    animation: modalSlideUp-b-8ud9flt2ex 0.5s cubic-bezier(0.32, 0.72, 0, 1);
    transform-origin: center bottom;
}

@keyframes modalSlideUp-b-8ud9flt2ex {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.9);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0px);
    }
}

.modal-header[b-8ud9flt2ex] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.modal-header h3[b-8ud9flt2ex] {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
}

.close-btn[b-8ud9flt2ex] {
    background: none;
    border: none;
    font-size: 2rem;
    color: #8e8e93;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover[b-8ud9flt2ex] {
    background: #f0f0f0;
    color: #333;
}

.modal-content[b-8ud9flt2ex] {
    padding: 1.5rem 2rem 2rem;
}

.period-section[b-8ud9flt2ex],
.symptoms-section[b-8ud9flt2ex],
.notes-section[b-8ud9flt2ex] {
    margin-bottom: 2rem;
}

.period-section h4[b-8ud9flt2ex],
.symptoms-section h4[b-8ud9flt2ex],
.notes-section h4[b-8ud9flt2ex] {
    margin: 0 0 1rem 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
}

.toggle-switch[b-8ud9flt2ex] {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: background 0.2s ease;
}

.toggle-switch:hover[b-8ud9flt2ex] {
    background: #f0f0f0;
}

.toggle-switch input[type="checkbox"][b-8ud9flt2ex] {
    appearance: none;
    width: 52px;
    height: 28px;
    background: #e5e7eb;
    border-radius: 14px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-switch input[type="checkbox"]:checked[b-8ud9flt2ex] {
    background: #ff69b4;
}

.toggle-switch input[type="checkbox"][b-8ud9flt2ex]::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle-switch input[type="checkbox"]:checked[b-8ud9flt2ex]::before {
    transform: translateX(24px);
}

.toggle-label[b-8ud9flt2ex] {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
}

.flow-selector[b-8ud9flt2ex] {
    margin-top: 1rem;
}

.flow-selector label[b-8ud9flt2ex] {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 500;
    color: #666;
}

.flow-options[b-8ud9flt2ex] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 0.75rem;
}

.flow-btn[b-8ud9flt2ex] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0.75rem;
    background: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.85rem;
    font-weight: 500;
    color: #666;
}

.flow-btn:hover[b-8ud9flt2ex] {
    background: #f0f0f0;
    border-color: #ff69b4;
}

.flow-btn.active[b-8ud9flt2ex] {
    background: rgba(255, 105, 180, 0.1);
    border-color: #ff69b4;
    color: #ff69b4;
}

.flow-circle[b-8ud9flt2ex] {
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.flow-circle.flow-1[b-8ud9flt2ex] { background: rgba(255, 105, 180, 0.3); }
.flow-circle.flow-2[b-8ud9flt2ex] { background: rgba(255, 105, 180, 0.5); }
.flow-circle.flow-3[b-8ud9flt2ex] { background: rgba(255, 105, 180, 0.7); }
.flow-circle.flow-4[b-8ud9flt2ex] { background: rgba(255, 105, 180, 0.9); }
.flow-circle.flow-5[b-8ud9flt2ex] { background: #ff69b4; }

.symptoms-grid[b-8ud9flt2ex] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.75rem;
}

.symptom-btn[b-8ud9flt2ex] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    color: #666;
}

.symptom-btn:hover[b-8ud9flt2ex] {
    background: #f0f0f0;
    border-color: #fbbf24;
}

.symptom-btn.active[b-8ud9flt2ex] {
    background: rgba(251, 191, 36, 0.1);
    border-color: #fbbf24;
    color: #f59e0b;
}

.symptom-emoji[b-8ud9flt2ex] {
    font-size: 1.25rem;
}

.symptom-label[b-8ud9flt2ex] {
    font-weight: 500;
}

.notes-input[b-8ud9flt2ex] {
    width: 100%;
    min-height: 100px;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
    transition: border-color 0.2s ease;
}

.notes-input:focus[b-8ud9flt2ex] {
    outline: none;
    border-color: #ff69b4;
}

.modal-actions[b-8ud9flt2ex] {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.save-btn[b-8ud9flt2ex],
.delete-btn[b-8ud9flt2ex] {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.save-btn[b-8ud9flt2ex] {
    background: linear-gradient(135deg, #ff69b4 0%, #ff8a9b 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

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

.save-btn:hover[b-8ud9flt2ex]::before {
    left: 100%;
}

.save-btn:hover[b-8ud9flt2ex] {
    background: linear-gradient(135deg, #ff5a9f 0%, #ff7a8a 100%);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.4);
    transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.save-btn:active[b-8ud9flt2ex] {
    transform: translateY(0) scale(0.98);
    transition: all 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.delete-btn[b-8ud9flt2ex] {
    background: #f8f9fa;
    color: #ef4444;
    border: 2px solid #fed7d7;
}

.delete-btn:hover[b-8ud9flt2ex] {
    background: #fef2f2;
    border-color: #fca5a5;
    transform: translateY(-1px);
}

/* Mobile responsiveness */
@media (max-width: 480px) {
    .modal-overlay[b-8ud9flt2ex] {
        padding: 2rem 0.5rem 3.5rem;
        align-items: flex-start;
    }
    
    .day-modal[b-8ud9flt2ex] {
        margin: 0;
        margin-top: 0.5rem;
        max-height: calc(100vh - 6rem);
        border-radius: 16px;
    }
    
    .modal-header[b-8ud9flt2ex] {
        padding: 0.75rem 1.25rem 0.5rem;
    }
    
    .modal-header h3[b-8ud9flt2ex] {
        font-size: 1.25rem;
    }
    
    .modal-content[b-8ud9flt2ex] {
        padding: 0.5rem 1.25rem 0.75rem;
    }
    
    .flow-options[b-8ud9flt2ex] {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .symptoms-grid[b-8ud9flt2ex] {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .symptom-btn[b-8ud9flt2ex] {
        padding: 0.75rem;
        font-size: 0.85rem;
    }
    
    .symptom-emoji[b-8ud9flt2ex] {
        font-size: 1.1rem;
    }
    
    .period-section[b-8ud9flt2ex],
    .symptoms-section[b-8ud9flt2ex],
    .notes-section[b-8ud9flt2ex] {
        margin-bottom: 1rem;
    }
    
    .notes-input[b-8ud9flt2ex] {
        min-height: 80px;
    }
    
    .modal-actions[b-8ud9flt2ex] {
        flex-direction: column;
        margin-top: 1rem;
    }
}
/* /Components/DropdownMenu.razor.rz.scp.css */
/* ===== DROPDOWN MENU STYLES ===== */
.menu-dropdown[b-5fcbymgljw] {
    position: relative;
    z-index: 200;
}

.menu-trigger[b-5fcbymgljw] {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: white;
}

.menu-trigger:hover[b-5fcbymgljw] {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.menu-trigger:active[b-5fcbymgljw] {
    transform: scale(0.95);
}

.dropdown-overlay[b-5fcbymgljw] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 9998;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.dropdown-content[b-5fcbymgljw] {
    position: fixed;
    top: 75px;
    right: 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    width: max-content;
    min-width: 160px;
    max-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 9999;
    padding: 6px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.dropdown-content.show[b-5fcbymgljw] {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    animation: dropdownSlideIn-b-5fcbymgljw 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes dropdownSlideIn-b-5fcbymgljw {
    0% {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Base dropdown item styles */
.dropdown-item[b-5fcbymgljw] {
    display: flex;
    align-items: center;
    padding: 10px;
    color: #333;
    text-decoration: none;
    transition: all 0.15s ease;
    border-radius: 8px;
    margin: 1px 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    border: none;
    background: transparent;
    width: 100%;
    text-align: left;
    cursor: pointer;
    gap: 8px;
    white-space: nowrap;
}

/* Dropdown item children */
.dropdown-icon[b-5fcbymgljw] {
    font-size: 16px;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
    color: inherit;
}

.dropdown-text[b-5fcbymgljw] {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    flex: 1;
}

/* Hover states */
.dropdown-item:hover[b-5fcbymgljw] {
    background: linear-gradient(135deg, #f0f8ff 0%, #ffe0e0 100%);
    color: #ff6b6b;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.2);
}

.dropdown-item:hover .dropdown-text[b-5fcbymgljw] {
    color: #ff6b6b;
}

.dropdown-item:hover .dropdown-icon[b-5fcbymgljw] {
    transform: scale(1.1);
    color: #ff6b6b;
}

/* Premium item - SPECIAL STYLING */
.dropdown-item.premium-item[b-5fcbymgljw] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    margin: 4px 0;
    border-radius: 8px;
    font-weight: 600;
}

.dropdown-item.premium-item .dropdown-text[b-5fcbymgljw] {
    color: white;
}

.dropdown-item.premium-item .dropdown-icon[b-5fcbymgljw] {
    color: white;
}

.dropdown-item.premium-item:hover[b-5fcbymgljw] {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.dropdown-item.premium-item:hover .dropdown-text[b-5fcbymgljw] {
    color: white;
}

.dropdown-item.premium-item:hover .dropdown-icon[b-5fcbymgljw] {
    color: white;
}

.dropdown-divider[b-5fcbymgljw] {
    height: 1px;
    background: #e8e8ed;
    margin: 8px 0;
}

/* Desktop styles */
@media (min-width: 768px) {
    .menu-trigger[b-5fcbymgljw] {
        width: 44px;
        height: 44px;
    }
    
    .dropdown-content[b-5fcbymgljw] {
        width: 260px;
        top: 90px;
        right: 30px;
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    .dropdown-content[b-5fcbymgljw] {
        position: fixed;
        width: max-content;
        min-width: 180px;
        max-width: calc(100vw - 30px);
        right: 15px;
        left: auto;
        top: 65px;
    }
    
    .dropdown-item[b-5fcbymgljw] {
        padding: 14px 16px;
        min-height: 48px;
        gap: 12px;
    }
    
    .dropdown-icon[b-5fcbymgljw] {
        font-size: 20px;
        width: 24px;
    }
    
    .dropdown-text[b-5fcbymgljw] {
        font-size: 16px;
        font-weight: 500;
    }
    
    /* Make touch targets larger on mobile */
    .dropdown-item:active[b-5fcbymgljw] {
        background: #f0f0f0;
        transform: scale(0.98);
    }
}
/* /Components/MiniCalendar.razor.rz.scp.css */
.mini-calendar[b-k4f678kwfr] {
    max-width: 400px;
    margin: 0 auto;
}

.mini-weekdays[b-k4f678kwfr] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    margin-bottom: 10px;
}

.mini-weekday[b-k4f678kwfr] {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: #86868b;
    padding: 5px;
}

.mini-calendar-grid[b-k4f678kwfr] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.mini-day[b-k4f678kwfr] {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 14px;
    background: #f5f5f7;
    color: #1d1d1f;
}

.mini-day.other-month[b-k4f678kwfr] {
    opacity: 0.3;
}

.mini-day.today[b-k4f678kwfr] {
    background: #007aff;
    color: white;
    font-weight: 600;
}

.mini-day.period-day[b-k4f678kwfr] {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8787 100%);
    color: white;
}

.mini-day.estimated-day[b-k4f678kwfr] {
    background: linear-gradient(135deg, #ffb3ba 0%, #ffc0cb 100%);
    color: #ff6b6b;
    border: 1px dashed #ff8787;
}

/* Privacy mode for mini calendar */
.mini-calendar-grid.privacy-mode .mini-day[b-k4f678kwfr] {
    position: relative;
    overflow: hidden;
}

.mini-calendar-grid.privacy-mode .mini-day[b-k4f678kwfr]::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    background: rgba(255, 255, 255, 0.5);
    z-index: 1;
}

.mini-calendar-grid.privacy-mode .period-day[b-k4f678kwfr]::after,
.mini-calendar-grid.privacy-mode .estimated-day[b-k4f678kwfr]::after {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
/* /Components/PartnerCalendarView.razor.rz.scp.css */
.partner-calendar-container[b-5icuxlspp3] {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.calendar-header[b-5icuxlspp3] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.month-year[b-5icuxlspp3] {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.nav-button[b-5icuxlspp3] {
    background: none;
    border: none;
    color: #e91e63;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-button:hover[b-5icuxlspp3] {
    background: rgba(233, 30, 99, 0.1);
    transform: scale(1.1);
}

.weekdays[b-5icuxlspp3] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    margin-bottom: 10px;
}

.weekday[b-5icuxlspp3] {
    text-align: center;
    font-weight: 600;
    color: #666;
    padding: 10px 0;
    font-size: 0.9rem;
}

.calendar-grid[b-5icuxlspp3] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background: #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
}

.day-cell[b-5icuxlspp3] {
    background: white;
    min-height: 80px;
    padding: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.day-cell:hover[b-5icuxlspp3] {
    background: #f8f9fa;
}

.day-cell.other-month[b-5icuxlspp3] {
    background: #fafafa;
    color: #ccc;
}

.day-cell.today[b-5icuxlspp3] {
    background: #e3f2fd;
    border: 2px solid #2196f3;
}

.day-cell.selected[b-5icuxlspp3] {
    background: #fce4ec;
    border: 2px solid #e91e63;
}

.day-cell.period-day[b-5icuxlspp3] {
    background: linear-gradient(135deg, #ffebee 0%, #fce4ec 100%);
}

.day-number[b-5icuxlspp3] {
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 4px;
}

.day-indicators[b-5icuxlspp3] {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
    margin-top: auto;
}

.period-indicator[b-5icuxlspp3],
.symptom-indicator[b-5icuxlspp3],
.mood-indicator[b-5icuxlspp3],
.note-indicator[b-5icuxlspp3],
.want-indicator[b-5icuxlspp3] {
    font-size: 12px;
    opacity: 0.8;
    line-height: 1;
}

.period-indicator.flow-1[b-5icuxlspp3] { opacity: 0.3; }
.period-indicator.flow-2[b-5icuxlspp3] { opacity: 0.5; }
.period-indicator.flow-3[b-5icuxlspp3] { opacity: 0.7; }
.period-indicator.flow-4[b-5icuxlspp3] { opacity: 0.9; }
.period-indicator.flow-5[b-5icuxlspp3] { opacity: 1; }

.day-details[b-5icuxlspp3] {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
    border-left: 4px solid #e91e63;
}

.day-details h4[b-5icuxlspp3] {
    color: #e91e63;
    margin: 0 0 16px 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.detail-item[b-5icuxlspp3] {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    padding: 8px 0;
}

.detail-item:last-child[b-5icuxlspp3] {
    margin-bottom: 0;
}

.detail-icon[b-5icuxlspp3] {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.detail-label[b-5icuxlspp3] {
    font-weight: 600;
    color: #333;
    min-width: 80px;
    flex-shrink: 0;
}

.detail-value[b-5icuxlspp3] {
    color: #666;
    line-height: 1.5;
}

.privacy-notice[b-5icuxlspp3] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 8px;
    color: #f57c00;
    font-size: 0.9rem;
    margin-top: 12px;
}

.privacy-icon[b-5icuxlspp3] {
    font-size: 1.1rem;
}

.loading-calendar[b-5icuxlspp3] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 40px;
    color: #666;
}

.spinner[b-5icuxlspp3] {
    width: 32px;
    height: 32px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #e91e63;
    border-radius: 50%;
    animation: spin-b-5icuxlspp3 1s linear infinite;
}

@keyframes spin-b-5icuxlspp3 {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.no-data[b-5icuxlspp3] {
    text-align: center;
    padding: 40px;
    color: #666;
    font-style: italic;
}

@media (max-width: 768px) {
    .partner-calendar-container[b-5icuxlspp3] {
        padding: 16px;
        margin: 0 -8px;
        border-radius: 0;
    }

    .day-cell[b-5icuxlspp3] {
        min-height: 60px;
        padding: 6px;
    }

    .day-number[b-5icuxlspp3] {
        font-size: 0.9rem;
    }

    .day-indicators[b-5icuxlspp3] {
        gap: 1px;
    }

    .period-indicator[b-5icuxlspp3],
    .symptom-indicator[b-5icuxlspp3],
    .mood-indicator[b-5icuxlspp3],
    .note-indicator[b-5icuxlspp3],
    .want-indicator[b-5icuxlspp3] {
        font-size: 10px;
    }

    .day-details[b-5icuxlspp3] {
        padding: 16px;
        margin: 16px -8px 0;
        border-radius: 0;
    }

    .detail-item[b-5icuxlspp3] {
        flex-direction: column;
        gap: 4px;
        align-items: flex-start;
    }

    .detail-label[b-5icuxlspp3] {
        min-width: auto;
    }
}
/* /Components/PartnerView.razor.rz.scp.css */
.partner-container[b-a95823w56q] {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.loading-section[b-a95823w56q] {
    text-align: center;
    padding: 4rem 2rem;
}

.spinner[b-a95823w56q] {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #667eea;
    border-radius: 50%;
    animation: spin-b-a95823w56q 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin-b-a95823w56q {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.welcome-section[b-a95823w56q] {
    text-align: center;
    margin-bottom: 40px;
}

.welcome-section h1[b-a95823w56q] {
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.welcome-section p[b-a95823w56q] {
    font-size: 18px;
    color: #86868b;
}

.access-request-card[b-a95823w56q] {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.access-request-card h2[b-a95823w56q] {
    color: #1d1d1f;
    margin-bottom: 10px;
}

.access-request-card p[b-a95823w56q] {
    color: #86868b;
    margin-bottom: 30px;
}

.form-group[b-a95823w56q] {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.email-input[b-a95823w56q] {
    padding: 15px 20px;
    border: 2px solid #e8e8ed;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.2s ease;
}

.email-input:focus[b-a95823w56q] {
    outline: none;
    border-color: #667eea;
}

.request-button[b-a95823w56q] {
    padding: 15px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.request-button:hover:not(:disabled)[b-a95823w56q] {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.request-button:disabled[b-a95823w56q] {
    opacity: 0.5;
    cursor: not-allowed;
}

.success-message[b-a95823w56q] {
    margin-top: 20px;
    padding: 15px;
    background: #d4edda;
    color: #155724;
    border-radius: 10px;
    animation: slideDown-b-a95823w56q 0.3s ease;
}

@keyframes slideDown-b-a95823w56q {
    from {
        transform: translateY(-10px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.partner-calendar-view[b-a95823w56q] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.status-card[b-a95823w56q], .tips-card[b-a95823w56q], .calendar-preview[b-a95823w56q] {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.status-card h3[b-a95823w56q], .tips-card h3[b-a95823w56q], .calendar-preview h3[b-a95823w56q] {
    color: #1d1d1f;
    margin-bottom: 20px;
    font-size: 20px;
}

.status-indicator[b-a95823w56q] {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #f5f5f7;
    border-radius: 15px;
}

.status-indicator.active[b-a95823w56q] {
    background: linear-gradient(135deg, #ffe0e0 0%, #ffebeb 100%);
}

.status-icon[b-a95823w56q] {
    font-size: 40px;
}

.status-indicator h4[b-a95823w56q] {
    margin: 0 0 5px 0;
    color: #1d1d1f;
}

.status-indicator p[b-a95823w56q] {
    margin: 0;
    color: #86868b;
}

.tips-list[b-a95823w56q] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tips-list li[b-a95823w56q] {
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f7;
    color: #1d1d1f;
    display: flex;
    align-items: center;
}

.tips-list li:last-child[b-a95823w56q] {
    border-bottom: none;
}

.preview-header[b-a95823w56q] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.preview-header h3[b-a95823w56q] {
    margin: 0;
}

.privacy-button-mini[b-a95823w56q] {
    display: flex;
    align-items: center;
    padding: 6px 12px;
    border: 2px solid #667eea;
    background: white;
    color: #667eea;
    border-radius: 15px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.privacy-button-mini:hover[b-a95823w56q] {
    background: #e0e7ff;
    transform: scale(1.05);
}

.privacy-button-mini.active[b-a95823w56q] {
    background: #667eea;
    color: white;
}

@media (min-width: 768px) {
    .partner-calendar-view[b-a95823w56q] {
        grid-template-columns: 1fr 1fr;
    }
    
    .calendar-preview[b-a95823w56q] {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .welcome-section h1[b-a95823w56q] {
        font-size: 28px;
    }
    
    .access-request-card[b-a95823w56q] {
        padding: 25px;
    }
    
    .status-card[b-a95823w56q], .tips-card[b-a95823w56q], .calendar-preview[b-a95823w56q] {
        padding: 20px;
    }
}
/* /Layout/MainLayout.razor.rz.scp.css */
.app-container[b-6drr69g4ur] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: #f5f5f7;
}

.main-content[b-6drr69g4ur] {
    flex: 1;
    padding-top: calc(60px + env(safe-area-inset-top)); /* Header height + safe area */
    padding-bottom: calc(70px + env(safe-area-inset-bottom)); /* Footer height + safe area */
    padding-left: 1rem;
    padding-right: 1rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.error-container[b-6drr69g4ur] {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 500px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.error-container h3[b-6drr69g4ur] {
    color: #e74c3c;
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.error-container p[b-6drr69g4ur] {
    color: #666;
    margin: 0 0 2rem 0;
    font-size: 1rem;
}

.error-container .btn[b-6drr69g4ur] {
    background: #ff69b4;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.error-container .btn:hover[b-6drr69g4ur] {
    background: #ff5a9f;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 105, 180, 0.3);
}

.error-container details[b-6drr69g4ur] {
    text-align: left;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid #e9ecef;
}

.error-container summary[b-6drr69g4ur] {
    cursor: pointer;
    font-weight: 600;
    color: #666;
    padding: 0.5rem;
}

.error-container pre[b-6drr69g4ur] {
    margin: 1rem 0 0 0;
    padding: 1rem;
    background: #2d3748;
    color: #e2e8f0;
    border-radius: 6px;
    overflow-x: auto;
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Small mobile screens */
@media (max-width: 360px) {
    .main-content[b-6drr69g4ur] {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .error-container[b-6drr69g4ur] {
        padding: 1.5rem;
        margin: 1rem auto;
    }
}

/* Landscape mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .main-content[b-6drr69g4ur] {
        padding-top: calc(50px + env(safe-area-inset-top));
        padding-bottom: calc(60px + env(safe-area-inset-bottom));
    }
}

/* Large screens */
@media (min-width: 768px) {
    .main-content[b-6drr69g4ur] {
        padding-left: 2rem;
        padding-right: 2rem;
        padding-top: calc(70px + env(safe-area-inset-top));
        padding-bottom: calc(80px + env(safe-area-inset-bottom));
        max-width: 1200px;
        margin: 0 auto;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-4pgxpfcjc1] {
    background-color: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
}

.navbar-toggler:hover[b-4pgxpfcjc1] {
    background-color: rgba(255, 107, 107, 0.2);
}

.top-row[b-4pgxpfcjc1] {
    min-height: 3.5rem;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8787 100%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand[b-4pgxpfcjc1] {
    font-size: 1.2rem;
    font-weight: 600;
    color: white !important;
}

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

.bi-calendar-heart-fill[b-4pgxpfcjc1] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M4 .5a.5.5 0 0 0-1 0V1H2a2 2 0 0 0-2 2v1h16V3a2 2 0 0 0-2-2h-1V.5a.5.5 0 0 0-1 0V1H4V.5ZM16 14V5H0v9a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2ZM8 7.993c1.664-1.711 5.825 1.283 0 5.132-5.825-3.85-1.664-6.843 0-5.132Z'/%3E%3C/svg%3E");
}

.bi-people-fill[b-4pgxpfcjc1] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M7 14s-1 0-1-1 1-4 5-4 5 3 5 4-1 1-1 1H7zm4-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6z'/%3E%3Cpath fill-rule='evenodd' d='M5.216 14A2.238 2.238 0 0 1 5 13c0-1.355.68-2.75 1.936-3.72A6.325 6.325 0 0 0 5 9c-4 0-5 3-5 4s1 1 1 1h4.216z'/%3E%3Cpath d='M4.5 8a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5z'/%3E%3C/svg%3E");
}

.bi-gear-fill[b-4pgxpfcjc1] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M9.405 1.05c-.413-1.4-2.397-1.4-2.81 0l-.1.34a1.464 1.464 0 0 1-2.105.872l-.31-.17c-1.283-.698-2.686.705-1.987 1.987l.169.311c.446.82.023 1.841-.872 2.105l-.34.1c-1.4.413-1.4 2.397 0 2.81l.34.1a1.464 1.464 0 0 1 .872 2.105l-.17.31c-.698 1.283.705 2.686 1.987 1.987l.311-.169a1.464 1.464 0 0 1 2.105.872l.1.34c.413 1.4 2.397 1.4 2.81 0l.1-.34a1.464 1.464 0 0 1 2.105-.872l.31.17c1.283.698 2.686-.705 1.987-1.987l-.169-.311a1.464 1.464 0 0 1 .872-2.105l.34-.1c1.4-.413 1.4-2.397 0-2.81l-.34-.1a1.464 1.464 0 0 1-.872-2.105l.17-.31c.698-1.283-.705-2.686-1.987-1.987l-.311.169a1.464 1.464 0 0 1-2.105-.872l-.1-.34zM8 10.93a2.929 2.929 0 1 1 0-5.86 2.929 2.929 0 0 1 0 5.858z'/%3E%3C/svg%3E");
}

.nav-scrollable[b-4pgxpfcjc1] {
    background: white;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.05);
}

.nav-item[b-4pgxpfcjc1] {
    font-size: 0.95rem;
    padding-bottom: 0.5rem;
}

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

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

.nav-item[b-4pgxpfcjc1]  a {
    color: #6c757d;
    border-radius: 10px;
    height: 3rem;
    display: flex;
    align-items: center;
    line-height: 3rem;
    transition: all 0.2s ease;
    margin: 0 0.5rem;
}

.nav-item[b-4pgxpfcjc1]  a.active {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8787 100%);
    color: white;
    box-shadow: 0 3px 10px rgba(255, 107, 107, 0.3);
}

.nav-item[b-4pgxpfcjc1]  a:hover {
    background-color: #ffe0e0;
    color: #ff6b6b;
    transform: translateX(5px);
}

.nav-item[b-4pgxpfcjc1]  a.active:hover {
    background: linear-gradient(135deg, #ff5252 0%, #ff6b6b 100%);
    color: white;
}

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

    .collapse[b-4pgxpfcjc1] {
        display: block;
    }

    .nav-scrollable[b-4pgxpfcjc1] {
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}

@media (max-width: 640px) {
    .nav-scrollable[b-4pgxpfcjc1] {
        position: fixed;
        top: 3.5rem;
        left: 0;
        right: 0;
        bottom: 0;
        background: white;
        z-index: 999;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .nav-scrollable:not(.collapse)[b-4pgxpfcjc1] {
        transform: translateX(0);
    }
}
/* /Pages/About.razor.rz.scp.css */
.about-page[b-gc3ngdnped] {
    padding: 1rem 0;
}

.hero-section[b-gc3ngdnped] {
    text-align: center;
    margin-bottom: 3rem;
}

.hero-section h1[b-gc3ngdnped] {
    margin: 0 0 0.5rem 0;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff69b4 0%, #ff8a9b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-section p[b-gc3ngdnped] {
    margin: 0;
    font-size: 1.25rem;
    color: #666;
    opacity: 0.8;
}

.content-section[b-gc3ngdnped] {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.feature-grid[b-gc3ngdnped] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.feature-card[b-gc3ngdnped] {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.feature-card:hover[b-gc3ngdnped] {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.feature-icon[b-gc3ngdnped] {
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.feature-card h3[b-gc3ngdnped] {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
}

.feature-card p[b-gc3ngdnped] {
    margin: 0;
    color: #666;
    line-height: 1.5;
}

.mission-section[b-gc3ngdnped] {
    text-align: center;
    margin-bottom: 2rem;
}

.mission-section h2[b-gc3ngdnped] {
    margin: 0 0 1rem 0;
    font-size: 1.75rem;
    font-weight: 600;
    color: #333;
}

.mission-section p[b-gc3ngdnped] {
    margin: 0;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.version-info[b-gc3ngdnped] {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
    color: #8e8e93;
}

.version-info p[b-gc3ngdnped] {
    margin: 0.25rem 0;
    font-size: 0.9rem;
}

/* Tablet and larger */
@media (min-width: 768px) {
    .feature-grid[b-gc3ngdnped] {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .content-section[b-gc3ngdnped] {
        padding: 3rem;
    }
}

/* Mobile adjustments */
@media (max-width: 480px) {
    .hero-section h1[b-gc3ngdnped] {
        font-size: 2rem;
    }
    
    .hero-section p[b-gc3ngdnped] {
        font-size: 1.1rem;
    }
    
    .content-section[b-gc3ngdnped] {
        padding: 1.5rem;
    }
    
    .feature-card[b-gc3ngdnped] {
        padding: 1.25rem;
    }
    
    .feature-icon[b-gc3ngdnped] {
        font-size: 1.75rem;
    }
    
    .feature-card h3[b-gc3ngdnped] {
        font-size: 1.1rem;
    }
    
    .mission-section h2[b-gc3ngdnped] {
        font-size: 1.5rem;
    }
    
    .mission-section p[b-gc3ngdnped] {
        font-size: 1rem;
    }
}
/* /Pages/Contact.razor.rz.scp.css */
.contact-page[b-rc955pzc4q] {
    padding: 1rem 0;
}

.hero-section[b-rc955pzc4q] {
    text-align: center;
    margin-bottom: 2rem;
}

.hero-section h1[b-rc955pzc4q] {
    margin: 0 0 0.5rem 0;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff69b4 0%, #ff8a9b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-section p[b-rc955pzc4q] {
    margin: 0;
    font-size: 1.25rem;
    color: #666;
    opacity: 0.8;
}

.contact-content[b-rc955pzc4q] {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-options[b-rc955pzc4q] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-option[b-rc955pzc4q] {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #f8f9fa;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.contact-option:hover[b-rc955pzc4q] {
    background: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-option .icon[b-rc955pzc4q] {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.contact-option h3[b-rc955pzc4q] {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
}

.contact-option p[b-rc955pzc4q] {
    margin: 0 0 1rem 0;
    color: #666;
    font-size: 0.95rem;
}

.contact-option a[b-rc955pzc4q] {
    color: #ff69b4;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: inline-block;
}

.contact-option a:hover[b-rc955pzc4q] {
    background: rgba(255, 105, 180, 0.1);
    text-decoration: none;
}

.social-section[b-rc955pzc4q] {
    text-align: center;
    padding: 2rem 0 1rem;
    border-top: 1px solid #e9ecef;
}

.social-section h2[b-rc955pzc4q] {
    margin: 0 0 1.5rem 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
}

.social-links[b-rc955pzc4q] {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link[b-rc955pzc4q] {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #ff69b4 0%, #ff8a9b 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.social-link:hover[b-rc955pzc4q] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.3);
    text-decoration: none;
    color: white;
}

.response-time[b-rc955pzc4q] {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.response-time p[b-rc955pzc4q] {
    margin: 0;
    color: #8e8e93;
    font-style: italic;
    font-size: 0.9rem;
}

/* Tablet and larger */
@media (min-width: 768px) {
    .contact-options[b-rc955pzc4q] {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .contact-content[b-rc955pzc4q] {
        padding: 3rem;
    }
}

/* Mobile adjustments */
@media (max-width: 480px) {
    .hero-section h1[b-rc955pzc4q] {
        font-size: 2rem;
    }
    
    .hero-section p[b-rc955pzc4q] {
        font-size: 1.1rem;
    }
    
    .contact-content[b-rc955pzc4q] {
        padding: 1.5rem;
    }
    
    .contact-option[b-rc955pzc4q] {
        padding: 1.5rem 1rem;
    }
    
    .contact-option .icon[b-rc955pzc4q] {
        font-size: 2.5rem;
    }
    
    .social-links[b-rc955pzc4q] {
        flex-direction: column;
        align-items: center;
    }
    
    .social-link[b-rc955pzc4q] {
        width: 200px;
    }
}
/* /Pages/Feedback.razor.rz.scp.css */
.feedback-page[b-j7qrxptvnt] {
    padding: 1rem 0;
}

.hero-section[b-j7qrxptvnt] {
    text-align: center;
    margin-bottom: 2rem;
}

.hero-section h1[b-j7qrxptvnt] {
    margin: 0 0 0.5rem 0;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff69b4 0%, #ff8a9b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-section p[b-j7qrxptvnt] {
    margin: 0;
    font-size: 1.25rem;
    color: #666;
    opacity: 0.8;
}

.feedback-content[b-j7qrxptvnt] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.feedback-form[b-j7qrxptvnt] {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group[b-j7qrxptvnt] {
    margin-bottom: 1.5rem;
}

.form-group label[b-j7qrxptvnt] {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

.form-control[b-j7qrxptvnt] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s ease;
    background: white;
}

.form-control:focus[b-j7qrxptvnt] {
    outline: none;
    border-color: #ff69b4;
    box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.1);
}

.form-text[b-j7qrxptvnt] {
    font-size: 0.85rem;
    color: #8e8e93;
    margin-top: 0.25rem;
    display: block;
}

.rating-stars[b-j7qrxptvnt] {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.star[b-j7qrxptvnt] {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.3;
    transition: all 0.2s ease;
    padding: 0.25rem;
    border-radius: 8px;
}

.star:hover[b-j7qrxptvnt],
.star.active[b-j7qrxptvnt] {
    opacity: 1;
    transform: scale(1.1);
}

.star.active[b-j7qrxptvnt] {
    filter: drop-shadow(0 2px 4px rgba(255, 193, 7, 0.3));
}

textarea.form-control[b-j7qrxptvnt] {
    resize: vertical;
    min-height: 120px;
    line-height: 1.5;
}

.form-actions[b-j7qrxptvnt] {
    margin-top: 2rem;
}

.submit-btn[b-j7qrxptvnt] {
    background: linear-gradient(135deg, #ff69b4 0%, #ff8a9b 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 52px;
}

.submit-btn:hover:not(:disabled)[b-j7qrxptvnt] {
    background: linear-gradient(135deg, #ff5a9f 0%, #ff7a8a 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.3);
}

.submit-btn:disabled[b-j7qrxptvnt] {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.spinner[b-j7qrxptvnt] {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin-b-j7qrxptvnt 1s linear infinite;
}

@keyframes spin-b-j7qrxptvnt {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.success-message[b-j7qrxptvnt] {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 1px solid #b8dabc;
    border-radius: 12px;
    color: #155724;
    animation: slideIn-b-j7qrxptvnt 0.3s ease;
}

@keyframes slideIn-b-j7qrxptvnt {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-message p[b-j7qrxptvnt] {
    margin: 0;
    font-weight: 500;
}

.feedback-info[b-j7qrxptvnt] {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.feedback-info h3[b-j7qrxptvnt] {
    margin: 0 0 1.5rem 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
}

.contact-links[b-j7qrxptvnt] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-link[b-j7qrxptvnt] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    transition: all 0.2s ease;
}

.contact-link:hover[b-j7qrxptvnt] {
    background: #f0f0f0;
    transform: translateY(-2px);
    text-decoration: none;
    color: #ff69b4;
}

.contact-icon[b-j7qrxptvnt] {
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* Large screens */
@media (min-width: 768px) {
    .feedback-content[b-j7qrxptvnt] {
        grid-template-columns: 2fr 1fr;
        gap: 3rem;
    }
}

/* Mobile adjustments */
@media (max-width: 480px) {
    .hero-section h1[b-j7qrxptvnt] {
        font-size: 2rem;
    }
    
    .hero-section p[b-j7qrxptvnt] {
        font-size: 1.1rem;
    }
    
    .feedback-form[b-j7qrxptvnt],
    .feedback-info[b-j7qrxptvnt] {
        padding: 1.5rem;
    }
    
    .rating-stars[b-j7qrxptvnt] {
        justify-content: center;
    }
    
    .star[b-j7qrxptvnt] {
        font-size: 1.25rem;
    }
    
    .submit-btn[b-j7qrxptvnt] {
        width: 100%;
        justify-content: center;
    }
}
/* /Pages/Home.razor.rz.scp.css */
.home-page[b-ujvgrrklir] {
    padding: 1rem 0;
}

.welcome-section[b-ujvgrrklir] {
    text-align: center;
    margin-bottom: 2rem;
}

.welcome-section h1[b-ujvgrrklir] {
    margin: 0 0 0.5rem 0;
    font-size: 2rem;
    font-weight: 700;
    color: #333;
}

.welcome-section p[b-ujvgrrklir] {
    margin: 0;
    font-size: 1.1rem;
    color: #666;
    opacity: 0.8;
}

.insights-section[b-ujvgrrklir] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.insight-card[b-ujvgrrklir] {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1), 
                0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.insight-card:hover[b-ujvgrrklir] {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15), 
                0 0 0 1px rgba(255, 255, 255, 0.1);
}

.insight-card:active[b-ujvgrrklir] {
    transform: translateY(-2px) scale(0.98);
    transition: all 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.insight-icon[b-ujvgrrklir] {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.insight-content h3[b-ujvgrrklir] {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
}

.insight-content p[b-ujvgrrklir] {
    margin: 0;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

/* Large screens */
@media (min-width: 768px) {
    .insights-section[b-ujvgrrklir] {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .welcome-section h1[b-ujvgrrklir] {
        font-size: 2.5rem;
    }
    
    .welcome-section p[b-ujvgrrklir] {
        font-size: 1.25rem;
    }
}

/* Hide subtitle on mobile for space saving */
.desktop-subtitle[b-ujvgrrklir] {
    display: none;
}

/* Show subtitle on larger screens */
@media (min-width: 768px) {
    .desktop-subtitle[b-ujvgrrklir] {
        display: block;
    }
}

/* Mobile adjustments */
@media (max-width: 480px) {
    .welcome-section h1[b-ujvgrrklir] {
        font-size: 1.75rem;
    }
    
    .insight-card[b-ujvgrrklir] {
        padding: 1.25rem;
    }
    
    .insight-icon[b-ujvgrrklir] {
        font-size: 2rem;
    }
    
    .insight-content h3[b-ujvgrrklir] {
        font-size: 1.1rem;
    }
    
    .insight-content p[b-ujvgrrklir] {
        font-size: 0.9rem;
    }
}
/* /Pages/Login.razor.rz.scp.css */
.auth-container[b-odjg5cljdb] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.auth-card[b-odjg5cljdb] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 40px;
    width: 100%;
    max-width: 400px;
}

.auth-header[b-odjg5cljdb] {
    text-align: center;
    margin-bottom: 32px;
}

.auth-header h1[b-odjg5cljdb] {
    color: #333;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
}

.auth-header p[b-odjg5cljdb] {
    color: #666;
    font-size: 16px;
    margin: 0;
}

.auth-form[b-odjg5cljdb] {
    margin-bottom: 24px;
}

.form-group[b-odjg5cljdb] {
    margin-bottom: 20px;
}

.form-group label[b-odjg5cljdb] {
    display: block;
    margin-bottom: 6px;
    color: #333;
    font-weight: 500;
    font-size: 14px;
}

.form-control[b-odjg5cljdb] {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.form-control:focus[b-odjg5cljdb] {
    outline: none;
    border-color: #667eea;
}

.btn[b-odjg5cljdb] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    box-sizing: border-box;
}

.btn:disabled[b-odjg5cljdb] {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-primary[b-odjg5cljdb] {
    background: #667eea;
    color: white;
}

.btn-primary:hover:not(:disabled)[b-odjg5cljdb] {
    background: #5a6fd8;
    transform: translateY(-1px);
}

.btn-block[b-odjg5cljdb] {
    width: 100%;
}

.spinner[b-odjg5cljdb] {
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin-b-odjg5cljdb 1s linear infinite;
}

@keyframes spin-b-odjg5cljdb {
    to { transform: rotate(360deg); }
}

.auth-divider[b-odjg5cljdb] {
    text-align: center;
    margin: 24px 0;
    position: relative;
}

.auth-divider[b-odjg5cljdb]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e1e5e9;
}

.auth-divider span[b-odjg5cljdb] {
    background: white;
    padding: 0 16px;
    color: #666;
    font-size: 14px;
}

.external-login-buttons[b-odjg5cljdb] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.btn-google[b-odjg5cljdb] {
    background: #db4437;
    color: white;
}

.btn-google:hover:not(:disabled)[b-odjg5cljdb] {
    background: #c23321;
}

.btn-facebook[b-odjg5cljdb] {
    background: #3b5998;
    color: white;
}

.btn-facebook:hover:not(:disabled)[b-odjg5cljdb] {
    background: #2d4373;
}

.btn-microsoft[b-odjg5cljdb] {
    background: #00a1f1;
    color: white;
}

.btn-microsoft:hover:not(:disabled)[b-odjg5cljdb] {
    background: #0078d4;
}

.auth-footer[b-odjg5cljdb] {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.auth-footer a[b-odjg5cljdb] {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.auth-footer a:hover[b-odjg5cljdb] {
    text-decoration: underline;
}

.error-message[b-odjg5cljdb] {
    background: #fee;
    color: #c53030;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #fed7d7;
    margin-bottom: 20px;
    font-size: 14px;
}

.validation-errors[b-odjg5cljdb] {
    background: #fee;
    color: #c53030;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #fed7d7;
    margin-bottom: 20px;
    font-size: 14px;
}

.validation-errors ul[b-odjg5cljdb] {
    margin: 0;
    padding-left: 20px;
}

.validation-message[b-odjg5cljdb] {
    color: #c53030;
    font-size: 12px;
    margin-top: 4px;
}
/* /Pages/Register.razor.rz.scp.css */
.auth-container[b-s5w9cfcx1n] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.auth-card[b-s5w9cfcx1n] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 40px;
    width: 100%;
    max-width: 400px;
}

.auth-header[b-s5w9cfcx1n] {
    text-align: center;
    margin-bottom: 32px;
}

.auth-header h1[b-s5w9cfcx1n] {
    color: #333;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
}

.auth-header p[b-s5w9cfcx1n] {
    color: #666;
    font-size: 16px;
    margin: 0;
}

.auth-form[b-s5w9cfcx1n] {
    margin-bottom: 24px;
}

.form-row[b-s5w9cfcx1n] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.form-group[b-s5w9cfcx1n] {
    margin-bottom: 20px;
}

.form-row .form-group[b-s5w9cfcx1n] {
    margin-bottom: 0;
}

.form-group label[b-s5w9cfcx1n] {
    display: block;
    margin-bottom: 6px;
    color: #333;
    font-weight: 500;
    font-size: 14px;
}

.form-control[b-s5w9cfcx1n] {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.form-control:focus[b-s5w9cfcx1n] {
    outline: none;
    border-color: #667eea;
}

.form-text[b-s5w9cfcx1n] {
    font-size: 12px;
    color: #666;
    margin-top: 4px;
}

.checkbox-label[b-s5w9cfcx1n] {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"][b-s5w9cfcx1n] {
    margin: 0;
}

.btn[b-s5w9cfcx1n] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    box-sizing: border-box;
}

.btn:disabled[b-s5w9cfcx1n] {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-primary[b-s5w9cfcx1n] {
    background: #667eea;
    color: white;
}

.btn-primary:hover:not(:disabled)[b-s5w9cfcx1n] {
    background: #5a6fd8;
    transform: translateY(-1px);
}

.btn-block[b-s5w9cfcx1n] {
    width: 100%;
}

.spinner[b-s5w9cfcx1n] {
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin-b-s5w9cfcx1n 1s linear infinite;
}

@keyframes spin-b-s5w9cfcx1n {
    to { transform: rotate(360deg); }
}

.auth-divider[b-s5w9cfcx1n] {
    text-align: center;
    margin: 24px 0;
    position: relative;
}

.auth-divider[b-s5w9cfcx1n]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e1e5e9;
}

.auth-divider span[b-s5w9cfcx1n] {
    background: white;
    padding: 0 16px;
    color: #666;
    font-size: 14px;
}

.external-login-buttons[b-s5w9cfcx1n] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.btn-google[b-s5w9cfcx1n] {
    background: #db4437;
    color: white;
}

.btn-google:hover:not(:disabled)[b-s5w9cfcx1n] {
    background: #c23321;
}

.btn-facebook[b-s5w9cfcx1n] {
    background: #3b5998;
    color: white;
}

.btn-facebook:hover:not(:disabled)[b-s5w9cfcx1n] {
    background: #2d4373;
}

.btn-microsoft[b-s5w9cfcx1n] {
    background: #00a1f1;
    color: white;
}

.btn-microsoft:hover:not(:disabled)[b-s5w9cfcx1n] {
    background: #0078d4;
}

.auth-footer[b-s5w9cfcx1n] {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.auth-footer a[b-s5w9cfcx1n] {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.auth-footer a:hover[b-s5w9cfcx1n] {
    text-decoration: underline;
}

.error-message[b-s5w9cfcx1n] {
    background: #fee;
    color: #c53030;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #fed7d7;
    margin-bottom: 20px;
    font-size: 14px;
}

.validation-errors[b-s5w9cfcx1n] {
    background: #fee;
    color: #c53030;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #fed7d7;
    margin-bottom: 20px;
    font-size: 14px;
}

.validation-errors ul[b-s5w9cfcx1n] {
    margin: 0;
    padding-left: 20px;
}

.validation-message[b-s5w9cfcx1n] {
    color: #c53030;
    font-size: 12px;
    margin-top: 4px;
}
