/* /Components/Layout/MainLayout.razor.rz.scp.css */
.app-layout[b-nqxmmm9m4x] {
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: var(--primary-burgundy, #4a0404);
    height: 100dvh;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
}

@media (max-width: 768px) {
    .app-layout[b-nqxmmm9m4x] {
        height: auto;
        min-height: 100dvh;
        overflow: visible;
    }
}

/* ===== TOP HEADER NAVBAR ===== */
.top-header-navbar[b-nqxmmm9m4x] {
    height: 70px;
    background-color: var(--primary-burgundy, #4a0404);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 100;
    flex-shrink: 0;
}

.header-brand[b-nqxmmm9m4x] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
}

.brand-title-stack[b-nqxmmm9m4x] {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.brand-title-text[b-nqxmmm9m4x] {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--accent-gold, #ffcc00);
    text-decoration: none;
    line-height: 1.1;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.brand-subtitle-text[b-nqxmmm9m4x] {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.2;
    margin-top: 2px;
    white-space: nowrap;
}

/* SEARCH BOX */
.header-search[b-nqxmmm9m4x] {
    flex: 1;
    max-width: 420px;
    margin: 0 2rem;
}

.search-box[b-nqxmmm9m4x] {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 30px;
    padding: 6px 16px;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
}

.search-box:focus-within[b-nqxmmm9m4x] {
    border-color: var(--accent-gold, #ffcc00);
    background: rgba(0, 0, 0, 0.35);
}

.search-box-icon[b-nqxmmm9m4x] {
    color: var(--accent-gold, #ffcc00);
    font-size: 0.95rem;
    margin-right: 10px;
}

.search-box-input[b-nqxmmm9m4x] {
    background: transparent;
    border: none;
    color: #ffffff;
    outline: none;
    width: 100%;
    font-size: 0.9rem;
}

.search-box-input[b-nqxmmm9m4x]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* USER ACTIONS */
.header-user-actions[b-nqxmmm9m4x] {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-shrink: 0;
}

.header-icon-btn[b-nqxmmm9m4x] {
    color: #ffffff;
    cursor: pointer;
    position: relative;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-icon-btn:hover[b-nqxmmm9m4x] {
    color: var(--accent-gold, #ffcc00);
}

.notification-badge-count[b-nqxmmm9m4x] {
    position: absolute;
    top: -5px;
    right: -7px;
    background-color: #e53935;
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 4px rgba(0,0,0,0.3);
}

.header-user-profile[b-nqxmmm9m4x] {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 14px 5px 8px;
    border-radius: 20px;
    cursor: pointer;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.2s ease;
}

.header-user-profile:hover[b-nqxmmm9m4x] {
    background: rgba(255, 255, 255, 0.18);
}

.user-avatar[b-nqxmmm9m4x] {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #ffffff;
    color: var(--primary-burgundy, #4a0404);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

/* PARENT USER DROPDOWN */
.header-user-dropdown-container[b-nqxmmm9m4x] {
    position: relative;
}

.rotate-180[b-nqxmmm9m4x] {
    transform: rotate(180deg);
    transition: transform 0.2s ease;
}

.parent-dropdown-menu[b-nqxmmm9m4x] {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 260px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 10px;
    z-index: 1000;
    animation: fadeInDown-b-nqxmmm9m4x 0.2s ease-out;
}

@keyframes fadeInDown-b-nqxmmm9m4x {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-header-card[b-nqxmmm9m4x] {
    padding: 10px;
    background: #faf0e6;
    border-radius: 12px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dropdown-user-avatar[b-nqxmmm9m4x] {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-burgundy, #4a0404);
    color: var(--accent-gold, #ffcc00);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.dropdown-user-name[b-nqxmmm9m4x] {
    font-weight: 700;
    font-size: 0.9rem;
    color: #333;
    line-height: 1.2;
}

.dropdown-user-role[b-nqxmmm9m4x] {
    font-size: 0.73rem;
    color: #666;
    margin-top: 2px;
}

.dropdown-section-title[b-nqxmmm9m4x] {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #888;
    letter-spacing: 0.5px;
    padding: 6px 8px 4px 8px;
}

.dropdown-item-btn[b-nqxmmm9m4x] {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 8px 10px;
    border: none;
    background: transparent;
    border-radius: 10px;
    color: #333;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s ease;
}

.dropdown-item-btn:hover[b-nqxmmm9m4x] {
    background: #f5f5f5;
    color: var(--primary-burgundy, #4a0404);
}

.dropdown-item-btn.active[b-nqxmmm9m4x] {
    background: #fff8eb;
    color: var(--primary-burgundy, #4a0404);
    font-weight: 700;
}

.dropdown-divider[b-nqxmmm9m4x] {
    height: 1px;
    background: #eee;
    margin: 6px 0;
}

/* MOBILE BACKDROP OVERLAY */
.mobile-menu-backdrop[b-nqxmmm9m4x] {
    display: none;
}

@media (max-width: 768px) {
    .mobile-menu-backdrop[b-nqxmmm9m4x] {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(3px);
        z-index: 1040;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    .mobile-menu-backdrop.show[b-nqxmmm9m4x] {
        opacity: 1;
        pointer-events: auto;
    }
}

/* APP BODY */
.app-body[b-nqxmmm9m4x] {
    display: flex;
    flex: 1;
    min-height: 0;
    width: 100%;
}

.app-sidebar[b-nqxmmm9m4x] {
    width: 280px;
    background-color: var(--primary-burgundy, #4a0404);
    flex-shrink: 0;
    height: 100%;
}

.app-main-content[b-nqxmmm9m4x] {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    min-width: 0;
    background-color: var(--page-background, #fff8f5);
}

.content[b-nqxmmm9m4x] {
    background-color: var(--page-background, #fff8f5);
    flex: 1;
    min-height: 0;
    min-width: 0;
    padding: 1rem 2rem !important;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    color: var(--text-primary, #333333);
}

/* RESPONSIVE DESIGN FOR MOBILE & TABLET */
@media (max-width: 768px) {
    .top-header-navbar[b-nqxmmm9m4x] {
        height: 60px;
        padding: 0 0.5rem;
    }

    .header-brand[b-nqxmmm9m4x] {
        gap: 0.4rem;
        min-width: 0;
        flex: 1;
    }

    .brand-title-stack[b-nqxmmm9m4x] {
        min-width: 0;
        overflow: hidden;
    }

    .brand-title-text[b-nqxmmm9m4x] {
        font-size: 0.95rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .brand-subtitle-text[b-nqxmmm9m4x] {
        display: none;
    }

    .header-search[b-nqxmmm9m4x] {
        display: none;
    }

    .header-user-actions[b-nqxmmm9m4x] {
        gap: 0.5rem;
        flex-shrink: 0;
    }

    .user-display-name[b-nqxmmm9m4x] {
        display: none;
    }

    .header-user-profile[b-nqxmmm9m4x] {
        padding: 4px 6px;
    }

    .app-body[b-nqxmmm9m4x] {
        flex-direction: column;
    }

    .app-sidebar[b-nqxmmm9m4x] {
        width: 100%;
        height: auto;
    }

    .app-main-content[b-nqxmmm9m4x] {
        height: auto;
        overflow: visible;
        flex: none;
    }

    .content[b-nqxmmm9m4x] {
        padding: 0.75rem 0.5rem !important;
        height: auto !important;
        overflow: visible !important;
        overflow-x: hidden !important;
        flex: none !important;
        max-width: 100vw !important;
        box-sizing: border-box !important;
    }
}

#blazor-error-ui[b-nqxmmm9m4x] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss[b-nqxmmm9m4x] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-cdbuke7euh] {
    opacity: 0;
    position: absolute;
    top: -9999px;
    left: -9999px;
    width: 1px;
    height: 1px;
    pointer-events: none;
}

.bi[b-cdbuke7euh] {
    display: inline-block;
    font-size: 1.25rem;
    margin-right: 1rem;
}

.nav-item[b-cdbuke7euh] {
    font-size: 0.95rem;
}

.nav-item[b-cdbuke7euh]  .nav-link {
    color: rgba(255, 255, 255, 0.9);
    background: transparent;
    border: none;
    border-radius: 12px;
    height: 3.1rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 1.25rem;
    width: 100%;
    margin-bottom: 0.25rem;
    font-weight: 600;
    font-size: 0.98rem;
    transition: all 0.2s ease;
    text-decoration: none;
}

.nav-item[b-cdbuke7euh]  a.active {
    background-color: #6d0e0e;
    color: var(--accent-gold, #ffcc00);
    font-weight: 700;
}

.nav-item[b-cdbuke7euh]  a.active .bi {
    color: var(--accent-gold, #ffcc00);
}

.nav-item[b-cdbuke7euh]  .nav-link:hover:not(.active) {
    background-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.nav-scrollable[b-cdbuke7euh] {
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: var(--primary-burgundy, #4a0404);
}

@media (max-width: 768px) {
    .nav-scrollable[b-cdbuke7euh] {
        position: fixed;
        top: 0;
        left: -280px;
        width: 280px;
        height: 100vh;
        z-index: 1050;
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        padding-top: 0;
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.5);
    }

    .nav-scrollable.open[b-cdbuke7euh] {
        left: 0;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-11pq3u0ve4],
.components-reconnect-repeated-attempt-visible[b-11pq3u0ve4],
.components-reconnect-failed-visible[b-11pq3u0ve4],
.components-pause-visible[b-11pq3u0ve4],
.components-resume-failed-visible[b-11pq3u0ve4],
.components-rejoining-animation[b-11pq3u0ve4] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-11pq3u0ve4],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-11pq3u0ve4],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-11pq3u0ve4],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-11pq3u0ve4],
#components-reconnect-modal.components-reconnect-retrying[b-11pq3u0ve4],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-11pq3u0ve4],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-11pq3u0ve4],
#components-reconnect-modal.components-reconnect-failed[b-11pq3u0ve4],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-11pq3u0ve4] {
    display: block;
}


#components-reconnect-modal[b-11pq3u0ve4] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-11pq3u0ve4 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-11pq3u0ve4 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-11pq3u0ve4 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-11pq3u0ve4]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-11pq3u0ve4 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-11pq3u0ve4 {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-11pq3u0ve4 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-11pq3u0ve4 {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-11pq3u0ve4] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-11pq3u0ve4] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-11pq3u0ve4] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-11pq3u0ve4] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-11pq3u0ve4] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-11pq3u0ve4] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-11pq3u0ve4] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-11pq3u0ve4 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-11pq3u0ve4] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-11pq3u0ve4 {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/Dashboard.razor.rz.scp.css */
.dashboard-layout[b-gb0uxhe4ge] {
    display: flex;
    gap: 0.5rem;
    flex: 1;
    min-height: 0; /* Allows children to shrink without overflowing */
}

.left-column[b-gb0uxhe4ge] {
    flex: 7;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    justify-content: flex-start; /* Aligns to top */
}

.right-column[b-gb0uxhe4ge] {
    flex: 3;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    justify-content: flex-start; /* Aligns to top */
}

/* Header Area */
.dashboard-header[b-gb0uxhe4ge] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.greeting h1[b-gb0uxhe4ge] {
    color: var(--primary-burgundy);
    font-weight: 700;
    font-size: 1.6rem;
    margin-bottom: 0.25rem;
}

.greeting p[b-gb0uxhe4ge] {
    color: var(--primary-burgundy);
    font-size: 0.95rem;
}

.baby-illustration[b-gb0uxhe4ge] {
    font-size: 4rem;
}

/* Common Card Style */
.dash-card[b-gb0uxhe4ge] {
    background-color: #fef7f0; /* Light brownish/cream background instead of white */
    border-radius: 15px;
    padding: 0.6rem;
    box-shadow: 0 4px 10px rgba(87, 2, 7, 0.05); /* Soft shadow using primary-burgundy tone */
}

/* Top Info Row */
.info-row[b-gb0uxhe4ge] {
    display: flex;
    gap: 1.5rem;
}

.info-card[b-gb0uxhe4ge] {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-icon[b-gb0uxhe4ge] {
    width: 45px;
    height: 45px;
    background-color: var(--primary-burgundy);
    color: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.info-text h4[b-gb0uxhe4ge] {
    margin: 0;
    color: var(--primary-burgundy);
    font-weight: 600; /* Poppins SemiBold */
    font-size: 1.1rem;
}

.info-text p[b-gb0uxhe4ge] {
    margin: 0;
    color: #8a6c6c; /* Softer, warmer brown to match image */
    font-size: 0.9rem;
}

/* Action Grid */
.action-grid[b-gb0uxhe4ge] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem; /* Reduced from 1.5rem to save vertical space */
}

.action-card[b-gb0uxhe4ge] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.action-card .big-icon[b-gb0uxhe4ge] {
    width: 55px;
    height: 55px;
    background-color: var(--primary-burgundy);
    color: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.action-card h3[b-gb0uxhe4ge] {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600; /* Poppins SemiBold */
    margin-bottom: 1rem;
}

.action-footer[b-gb0uxhe4ge] {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    text-align: left;
}

.action-footer p[b-gb0uxhe4ge] {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin-bottom: 2px;
}

.action-footer span.time[b-gb0uxhe4ge] {
    color: var(--primary-burgundy);
    font-weight: 700;
    font-size: 0.95rem;
}

.action-footer span.time.blue[b-gb0uxhe4ge] { color: var(--info); }
.action-footer span.time.teal[b-gb0uxhe4ge] { color: var(--success); }
.action-footer span.time.orange[b-gb0uxhe4ge] { color: var(--warning); }
.action-footer span.time.purple[b-gb0uxhe4ge] { color: var(--purple); }

.action-btn[b-gb0uxhe4ge] {
    width: 28px;
    height: 28px;
    border: 1.5px solid var(--accent-gold);
    color: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.action-btn:hover[b-gb0uxhe4ge] {
    background-color: var(--accent-gold);
    color: var(--primary-burgundy);
}

/* Right Panel Styles */
.profile-card[b-gb0uxhe4ge] {
    text-align: center;
}

.profile-card img[b-gb0uxhe4ge] {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 0.5rem;
}

.profile-card h2[b-gb0uxhe4ge] {
    color: var(--text-primary);
    font-weight: 600; /* Poppins SemiBold */
    margin-bottom: 0.2rem;
}

.profile-card p[b-gb0uxhe4ge] {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.stats-row[b-gb0uxhe4ge] {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.stat-item[b-gb0uxhe4ge] {
    text-align: center;
    flex: 1;
    position: relative;
}

/* Vertical dividers - Restored to match new image */
.stat-item:not(:last-child)[b-gb0uxhe4ge]::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: rgba(87, 2, 7, 0.1);
}

/* Specific colors based on reference image */
.stat-item:nth-child(1) i[b-gb0uxhe4ge] { color: var(--primary-burgundy); }
.stat-item:nth-child(2) i[b-gb0uxhe4ge] { color: var(--accent-gold); }
.stat-item:nth-child(3) i[b-gb0uxhe4ge] { color: var(--purple); }

.stat-item i[b-gb0uxhe4ge] {
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-item p[b-gb0uxhe4ge] {
    font-size: 0.75rem;
    margin-bottom: 0.2rem;
    color: var(--text-secondary);
}

.stat-item h4[b-gb0uxhe4ge] {
    color: var(--primary-burgundy);
    font-weight: 600; /* Poppins SemiBold */
    font-size: 1.05rem;
    margin: 0;
}

.activity-header[b-gb0uxhe4ge] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.activity-header h3[b-gb0uxhe4ge] {
    color: var(--primary-burgundy);
    font-size: 1.1rem;
    font-weight: 600; /* Poppins SemiBold */
    margin: 0;
}

.activity-header a[b-gb0uxhe4ge] {
    color: #1a5c8a; /* Deep blue/teal to match reference image */
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.activity-list[b-gb0uxhe4ge] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow-y: auto;
    flex: 1;
}

.activity-item[b-gb0uxhe4ge] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px dashed rgba(87, 2, 7, 0.1);
}

.activity-item:last-child[b-gb0uxhe4ge] {
    border-bottom: none;
    padding-bottom: 0;
}

.activity-icon[b-gb0uxhe4ge] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.activity-icon.feed[b-gb0uxhe4ge] {
    background-color: #faeaea;
    color: var(--primary-burgundy);
}

.activity-icon.solids[b-gb0uxhe4ge] {
    background-color: #fff3e0;
    color: #e65100;
}

.activity-icon.diaper[b-gb0uxhe4ge] {
    background-color: #fef5e7;
    color: #e68a00;
}

.activity-icon.potty[b-gb0uxhe4ge] {
    background-color: #e0f2f1;
    color: #00695c;
}

.activity-icon.sleep[b-gb0uxhe4ge] {
    background-color: #f3ebf8;
    color: var(--purple);
}

.activity-icon.temperature[b-gb0uxhe4ge] {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.activity-icon.growth[b-gb0uxhe4ge] {
    background-color: #fff8e1;
    color: #f57f17;
}

.activity-icon.medicine[b-gb0uxhe4ge] {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.activity-details h4[b-gb0uxhe4ge] {
    margin: 0;
    color: var(--primary-burgundy); /* Changed to burgundy to match image */
    font-weight: 500; /* Reduced weight from 600 to 500 */
    font-size: 0.95rem; /* Slightly reduced size */
}

.activity-details p[b-gb0uxhe4ge] {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.8rem; /* Slightly reduced to match proportion */
}

.footer-quote[b-gb0uxhe4ge] {
    background-color: var(--soft-highlight);
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-primary);
    font-style: italic;
    font-size: 0.75rem; /* Specifically reduced as requested */
    border-radius: 15px;
    padding: 0.6rem 1.5rem; /* Reduced padding slightly */
    margin-top: 0.5rem; /* Reduced margin to pull it up */
}

.footer-quote .heart[b-gb0uxhe4ge] {
    color: var(--primary-burgundy);
    font-size: 0.75rem;
}

@media (max-width: 1024px) {
    .dashboard-layout[b-gb0uxhe4ge] {
        flex-direction: column;
        flex: none; /* Let it grow to fit all stacked columns */
        min-height: auto;
        height: auto;
    }
    .action-grid[b-gb0uxhe4ge] {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 640px) {
    .action-grid[b-gb0uxhe4ge] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.65rem !important;
    }

    .info-row[b-gb0uxhe4ge] {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.65rem !important;
    }

    .info-card[b-gb0uxhe4ge] {
        padding: 0.5rem !important;
        gap: 0.5rem !important;
    }

    .info-icon[b-gb0uxhe4ge] {
        width: 36px !important;
        height: 36px !important;
        font-size: 1rem !important;
        flex-shrink: 0 !important;
    }

    .info-text h4[b-gb0uxhe4ge] {
        font-size: 0.85rem !important;
    }

    .info-text p[b-gb0uxhe4ge] {
        font-size: 0.75rem !important;
    }

    .action-card[b-gb0uxhe4ge] {
        padding: 0.6rem 0.4rem !important;
    }

    .action-card h3[b-gb0uxhe4ge] {
        font-size: 0.85rem !important;
        margin-bottom: 0.4rem !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        max-width: 100% !important;
    }

    .action-card .big-icon[b-gb0uxhe4ge] {
        width: 44px !important;
        height: 44px !important;
        font-size: 1.25rem !important;
        margin-bottom: 0.35rem !important;
    }

    .action-footer[b-gb0uxhe4ge] {
        font-size: 0.75rem !important;
    }

    .action-footer p[b-gb0uxhe4ge] {
        font-size: 0.7rem !important;
    }

    .action-footer span.time[b-gb0uxhe4ge] {
        font-size: 0.8rem !important;
    }

    .action-btn[b-gb0uxhe4ge] {
        width: 24px !important;
        height: 24px !important;
        font-size: 0.75rem !important;
        flex-shrink: 0 !important;
    }
}
/* /Components/Pages/Diaper.razor.rz.scp.css */
/* Diaper & Potty specific styles */
.dashboard-layout[b-a1e3t51nxb] {
    display: flex;
    gap: 1rem;
}

.left-column[b-a1e3t51nxb] {
    flex: 7;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    justify-content: flex-start;
}

.right-column[b-a1e3t51nxb] {
    flex: 3;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    justify-content: flex-start;
    position: sticky;
    top: 0;
    height: max-content;
}

.dash-card[b-a1e3t51nxb] {
    background-color: #fef7f0;
    border-radius: 12px;
    padding: 0.5rem 1rem;
    box-shadow: 0 4px 10px rgba(87, 2, 7, 0.05);
}

/* Header Section */
.dashboard-header[b-a1e3t51nxb] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
}

.header-icon-circle[b-a1e3t51nxb] {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #d79b8a;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.header-baby-img[b-a1e3t51nxb] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.greeting h1[b-a1e3t51nxb] {
    color: var(--primary-burgundy);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0;
}

.greeting p[b-a1e3t51nxb] {
    color: var(--accent-gold);
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.age-badge[b-a1e3t51nxb] {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #c0915a;
    font-size: 0.8rem;
    background-color: transparent;
    padding: 0;
}

.chart-icon-circle[b-a1e3t51nxb] {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1.5px solid var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 1rem;
}

/* Tab Content Area */
.main-content-card[b-a1e3t51nxb] {
    background-color: #fdf6ef;
    border: 1px solid rgba(87, 2, 7, 0.08);
    border-radius: 15px;
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1;
    margin-top: 10px;
    padding: 0.5rem;
    min-height: 680px;
}

.tab-content-area[b-a1e3t51nxb] {
    background-color: transparent;
    padding: 0.2rem 0.5rem;
    flex: 1;
    position: relative;
}

/* Today's Summary */
.summary-section[b-a1e3t51nxb] {
    position: relative;
    padding-top: 10px;
}

.summary-title-pill[b-a1e3t51nxb] {
    background-color: #faead5;
    color: var(--primary-burgundy);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.summary-row[b-a1e3t51nxb] {
    display: flex;
    gap: 1rem;
    padding: 0.5rem 1rem 0.5rem 1rem;
    align-items: center;
}

.summary-card[b-a1e3t51nxb] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.summary-divider[b-a1e3t51nxb] {
    width: 1px;
    height: 40px;
    background-color: rgba(87, 2, 7, 0.1);
}

.sum-icon[b-a1e3t51nxb] {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    background-color: white; /* Diaper icons have white background with colored icon */
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.sum-text h4[b-a1e3t51nxb] {
    margin: 0;
    color: var(--primary-burgundy); /* Diaper uses dark burgundy for numbers */
    font-weight: 700;
    font-size: 1.2rem;
}

.sum-text p[b-a1e3t51nxb] {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.75rem;
    line-height: 1.1;
}

/* Segmented Tabs */
.segmented-tabs[b-a1e3t51nxb] {
    display: flex;
    gap: 0.75rem;
    background-color: var(--primary-burgundy);
    padding: 0.5rem;
    border-radius: 16px;
    margin-bottom: 0.5rem;
}

.tab-btn[b-a1e3t51nxb] {
    flex: 1;
    border: none;
    background-color: transparent;
    color: rgba(255, 255, 255, 0.8);
    padding: 0.6rem 1rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.tab-btn:hover[b-a1e3t51nxb] {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
}

.tab-btn.active[b-a1e3t51nxb] {
    background-color: var(--accent-gold);
    color: var(--primary-burgundy);
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.section-title[b-a1e3t51nxb] {
    color: var(--primary-burgundy);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Diaper Type Grid */
.type-grid[b-a1e3t51nxb] {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.5rem;
}

.type-card[b-a1e3t51nxb] {
    background-color: white;
    border: 1.5px solid transparent;
    border-radius: 12px;
    padding: 0.8rem 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

.type-card.active[b-a1e3t51nxb] {
    border-color: var(--accent-gold);
}

.type-icon[b-a1e3t51nxb] {
    font-size: 1.8rem;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.type-card p[b-a1e3t51nxb] {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 600;
}

.check-badge[b-a1e3t51nxb] {
    position: absolute;
    top: -6px;
    right: -6px;
    background-color: var(--accent-gold);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Add Details Row */
.details-row[b-a1e3t51nxb] {
    display: flex;
    gap: 0.5rem;
    align-items: stretch;
}

.detail-group[b-a1e3t51nxb] {
    background-color: white;
    border-radius: 10px;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
    flex: 1;
}

.detail-group.flex-2[b-a1e3t51nxb] {
    flex: 1.5;
}

.detail-group label[b-a1e3t51nxb] {
    font-size: 0.7rem;
    color: var(--text-secondary);
    margin-bottom: 0.2rem;
    padding-left: 0.2rem;
}

.custom-select-wrapper[b-a1e3t51nxb] {
    display: flex;
    align-items: center;
}

.time-dropdown[b-a1e3t51nxb] {
    border: none;
    background: transparent;
    font-size: 0.85rem;
    color: var(--primary-burgundy);
    font-weight: 600;
    outline: none;
    cursor: pointer;
    padding: 0.2rem;
    margin-left: 0.2rem;
}

.level-toggle[b-a1e3t51nxb] {
    display: flex;
    background-color: #fffaf0;
    border-radius: 8px;
    padding: 2px;
    border: 1px solid rgba(87, 2, 7, 0.05);
}

.level-btn[b-a1e3t51nxb] {
    flex: 1;
    border: 1px solid transparent;
    background: transparent;
    padding: 0.2rem 0;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    cursor: pointer;
    transition: all 0.2s;
}

.level-btn.active[b-a1e3t51nxb] {
    background-color: white;
    border-color: var(--accent-gold);
    color: var(--primary-burgundy);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.notes-input-container[b-a1e3t51nxb] {
    display: flex;
    align-items: center;
    background-color: transparent;
    padding: 0.2rem;
}

.notes-input[b-a1e3t51nxb] {
    border: none;
    background: transparent;
    width: 100%;
    outline: none;
    font-size: 0.85rem;
    color: var(--text-primary);
}

.btn-save[b-a1e3t51nxb] {
    width: 100%;
    background-color: var(--accent-gold);
    color: var(--primary-burgundy);
    border: none;
    border-radius: 8px;
    padding: 0.5rem;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Diaper History Table */
.view-all-link[b-a1e3t51nxb] {
    color: var(--accent-gold);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
}

.history-table-container[b-a1e3t51nxb] {
    background-color: white;
    border-radius: 12px;
    padding: 0.5rem 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.history-table[b-a1e3t51nxb] {
    width: 100%;
    border-collapse: collapse;
}

.history-table th[b-a1e3t51nxb] {
    text-align: left;
    font-size: 0.75rem;
    color: var(--primary-burgundy);
    font-weight: 600;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(87, 2, 7, 0.08);
}

.history-table td[b-a1e3t51nxb] {
    padding: 0.6rem 0;
    font-size: 0.8rem;
    color: var(--text-primary);
    border-bottom: 1px dashed rgba(87, 2, 7, 0.08);
    font-weight: 500;
}

.history-table tr:last-child td[b-a1e3t51nxb] {
    border-bottom: none;
}

.history-table td:first-child[b-a1e3t51nxb] {
    color: var(--text-secondary);
}

/* Recent Activity Timeline */
.recent-timeline[b-a1e3t51nxb] {
    position: relative;
    padding-left: 20px;
}

.timeline-line[b-a1e3t51nxb] {
    position: absolute;
    left: 4px;
    top: 10px;
    bottom: 20px;
    width: 1px;
    background-color: var(--accent-gold);
}

.timeline-item[b-a1e3t51nxb] {
    display: flex;
    gap: 1rem;
    padding-bottom: 1rem;
    position: relative;
}

.timeline-dot-outline[b-a1e3t51nxb] {
    position: absolute;
    left: -20px;
    top: 5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: white;
    border: 2px solid var(--accent-gold);
}

.timeline-icon[b-a1e3t51nxb] {
    width: 35px;
    height: 35px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    z-index: 2;
}

.timeline-content[b-a1e3t51nxb] {
    flex: 1;
    background-color: white;
    border-radius: 10px;
    padding: 0.5rem 0.8rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.activity-header[b-a1e3t51nxb] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

/* Potty Tab Specific */
.potty-type-grid[b-a1e3t51nxb], .activity-grid[b-a1e3t51nxb], .success-grid[b-a1e3t51nxb] {
    display: grid;
    gap: 0.5rem;
}

.potty-type-grid[b-a1e3t51nxb] {
    grid-template-columns: repeat(4, 1fr);
}

.activity-grid[b-a1e3t51nxb] {
    grid-template-columns: repeat(3, 1fr);
}

.success-grid[b-a1e3t51nxb] {
    grid-template-columns: repeat(3, 1fr);
}

.duration-adjuster[b-a1e3t51nxb] {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 10px;
    padding: 0.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    border: 1px solid #f0f0f0;
    justify-content: space-between;
}

.duration-btn[b-a1e3t51nxb] {
    background: #fff5eb;
    border: none;
    border-radius: 8px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.duration-btn:hover[b-a1e3t51nxb] {
    background: #ffecd9;
}

.duration-value[b-a1e3t51nxb] {
    text-align: center;
    line-height: 1;
}

/* Responsiveness */
@media (max-width: 1024px) {
    .dashboard-layout[b-a1e3t51nxb] {
        flex-direction: column;
        flex: none;
        height: auto;
    }
    
    .type-grid[b-a1e3t51nxb] {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .summary-row[b-a1e3t51nxb] {
        flex-direction: row !important;
        flex-wrap: nowrap;
        gap: 0.25rem !important;
        padding: 0.5rem 0.2rem !important;
    }
    
    .summary-divider[b-a1e3t51nxb] {
        display: none !important;
    }

    .summary-card[b-a1e3t51nxb] {
        padding: 0.4rem 0.2rem !important;
        gap: 0.35rem !important;
        flex-direction: column !important;
        text-align: center !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .summary-card:not(:last-child)[b-a1e3t51nxb] {
        border-right: 1px solid rgba(87, 2, 7, 0.1) !important;
        border-bottom: none !important;
        padding-bottom: 0.4rem !important;
    }

    .sum-icon[b-a1e3t51nxb] {
        width: 32px !important;
        height: 32px !important;
        font-size: 1rem !important;
        margin-bottom: 2px !important;
    }

    .sum-text h4[b-a1e3t51nxb] {
        font-size: 0.95rem !important;
        line-height: 1.1 !important;
    }

    .sum-text p[b-a1e3t51nxb] {
        font-size: 0.65rem !important;
        line-height: 1.1 !important;
        text-align: center !important;
    }
    
    .details-row[b-a1e3t51nxb] {
        flex-direction: row;
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    .details-row .detail-group[b-a1e3t51nxb] {
        flex: 1 1 auto !important;
        min-width: 0;
    }
    
    .details-row .detail-group:last-child[b-a1e3t51nxb] {
        flex: 1 1 100% !important; /* Force Notes to a new row */
    }

    .details-row .detail-group label[b-a1e3t51nxb] {
        font-size: 0.75rem;
    }

    .details-row .custom-select-wrapper[b-a1e3t51nxb] {
        padding: 0.2rem;
    }

    .details-row .time-dropdown[b-a1e3t51nxb] {
        font-size: 0.8rem;
        width: auto;
    }

    .details-row .level-toggle[b-a1e3t51nxb] {
        padding: 2px;
        display: flex;
    }

    .details-row .level-btn[b-a1e3t51nxb] {
        padding: 4px 6px;
        font-size: 0.7rem;
        flex: 1;
    }

    .details-row .notes-input[b-a1e3t51nxb] {
        padding: 0.4rem;
        font-size: 0.8rem;
    }
    
    .type-grid[b-a1e3t51nxb] {
        display: flex;
        flex-wrap: nowrap;
        gap: 0.25rem;
    }

    .type-grid .type-card[b-a1e3t51nxb] {
        flex: 1 1 0;
        padding: 0.5rem 0.2rem;
    }

    .type-grid .type-card p[b-a1e3t51nxb] {
        font-size: 0.65rem;
        margin-top: 0.25rem;
        line-height: 1.1;
    }

    .type-grid .type-card .type-icon[b-a1e3t51nxb] {
        font-size: 1.25rem;
    }

    .potty-type-grid[b-a1e3t51nxb] {
        display: flex;
        flex-wrap: nowrap;
        gap: 0.25rem;
    }

    .potty-type-grid .type-card[b-a1e3t51nxb] {
        flex: 1 1 0;
        padding: 0.5rem 0.2rem;
    }

    .potty-type-grid .type-card p[b-a1e3t51nxb] {
        font-size: 0.65rem;
        margin-top: 0.25rem;
        line-height: 1.1;
    }

    .potty-type-grid .type-card .type-icon[b-a1e3t51nxb] {
        font-size: 1.25rem;
    }

    .activity-grid[b-a1e3t51nxb], .success-grid[b-a1e3t51nxb] {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.35rem !important;
        width: 100% !important;
    }

    .activity-grid .type-card[b-a1e3t51nxb], .success-grid .type-card[b-a1e3t51nxb] {
        padding: 0.4rem 0.2rem !important;
        text-align: center !important;
    }

    .activity-grid .type-card p[b-a1e3t51nxb], .success-grid .type-card p[b-a1e3t51nxb] {
        font-size: 0.75rem !important;
        margin-top: 0.2rem !important;
        line-height: 1.1 !important;
        white-space: nowrap !important;
    }

    .activity-grid .type-card div[style*="font-size: 1.8rem"][b-a1e3t51nxb], .success-grid .type-card div[style*="font-size: 1.8rem"][b-a1e3t51nxb] {
        font-size: 1.3rem !important;
        margin-bottom: 0.2rem !important;
    }
    
    .history-table th[b-a1e3t51nxb], .history-table td[b-a1e3t51nxb] {
        font-size: 0.7rem;
    }
}

/* Custom duration adjusters to match potty select border on focus */
.duration-btn-custom:focus[b-a1e3t51nxb] {
    box-shadow: none !important;
    outline: none !important;
}

.duration-box-custom[b-a1e3t51nxb] {
    transition: border-color 0.2s ease;
}

.duration-box-custom:focus-within[b-a1e3t51nxb] {
    border-color: #ffc107 !important;
}

/* Activity List (Match Feed Page) */
.activity-header[b-a1e3t51nxb] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.activity-header h3[b-a1e3t51nxb] {
    color: var(--primary-burgundy);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.activity-header a[b-a1e3t51nxb] {
    color: var(--accent-gold);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.activity-list[b-a1e3t51nxb] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.activity-item[b-a1e3t51nxb] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px dashed rgba(87, 2, 7, 0.1);
}

.activity-item:last-child[b-a1e3t51nxb] {
    border-bottom: none;
    padding-bottom: 0;
}

.activity-icon[b-a1e3t51nxb] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.activity-icon.feed[b-a1e3t51nxb] {
    background-color: #faeaea;
    color: var(--primary-burgundy);
}

.activity-icon.diaper[b-a1e3t51nxb] {
    background-color: #fef5e7;
    color: #e68a00;
}

.activity-details[b-a1e3t51nxb] {
    flex: 1;
}

.activity-details h4[b-a1e3t51nxb] {
    margin: 0;
    color: var(--primary-burgundy);
    font-weight: 500;
    font-size: 0.95rem;
}

.activity-details p[b-a1e3t51nxb] {
    margin: 0;
    color: #999;
    font-size: 0.8rem;
}

.activity-arrow[b-a1e3t51nxb] {
    color: #999;
    font-size: 0.8rem;
}

@media (max-width: 640px) {
    .segmented-tabs[b-a1e3t51nxb] {
        display: flex !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 0.5rem !important;
        padding: 0.5rem !important;
        border-radius: 16px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .segmented-tabs[b-a1e3t51nxb]::-webkit-scrollbar {
        display: none !important;
    }

    .tab-btn[b-a1e3t51nxb] {
        flex: 1 0 auto !important;
        padding: 0.6rem 1.1rem !important;
        font-size: 0.85rem !important;
        text-align: center !important;
        justify-content: center !important;
        white-space: nowrap !important;
        border-radius: 12px !important;
        gap: 6px !important;
    }

    .tab-btn span[b-a1e3t51nxb], .tab-btn i[b-a1e3t51nxb] {
        font-size: 0.95rem !important;
    }
}
/* /Components/Pages/EditDiaper.razor.rz.scp.css */
/* Edit Page Specific Layout */
.edit-container[b-vccdps1fm4] {
    width: 100%;
    padding-top: 1rem;
    padding-bottom: 2rem;
    color: var(--text-primary);
}

/* Breadcrumbs style */
.breadcrumbs[b-vccdps1fm4] {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.breadcrumbs span[b-vccdps1fm4] {
    margin: 0 0.5rem;
    color: #ccc;
}

/* Header Row layout */
.edit-header-row[b-vccdps1fm4] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
    width: 100%;
}

.edit-title[b-vccdps1fm4] {
    flex: 1;
}

.edit-title h1[b-vccdps1fm4] {
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    margin: 0;
    line-height: 1.2;
}

.edit-title p[b-vccdps1fm4] {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0.3rem 0 0 0;
}

/* Baby profile badge */
.baby-profile-badge[b-vccdps1fm4] {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    background-color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(87, 2, 7, 0.05);
    white-space: nowrap;
    flex-shrink: 0;
}

.baby-avatar-img[b-vccdps1fm4] {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f5a623;
}

.baby-badge-info h4[b-vccdps1fm4] {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    margin: 0;
}

.baby-badge-info p[b-vccdps1fm4] {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Back navigation */
.back-navigation[b-vccdps1fm4] {
    margin-bottom: 1.5rem;
}

.back-link[b-vccdps1fm4] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-burgundy);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
}

.back-link:hover[b-vccdps1fm4] {
    color: #f5a623;
}

/* Two column layout */
.edit-content-grid[b-vccdps1fm4] {
    display: grid;
    grid-template-columns: 7fr 3.5fr;
    gap: 1.5rem;
    width: 100%;
}

@media (max-width: 992px) {
    .edit-content-grid[b-vccdps1fm4] {
        grid-template-columns: 1fr;
    }
}

/* Form panel card */
.edit-form-card[b-vccdps1fm4] {
    background-color: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(87, 2, 7, 0.04);
}

.card-section-title[b-vccdps1fm4] {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.card-section-title i[b-vccdps1fm4] {
    color: #f5a623;
    font-size: 1.2rem;
}

/* Form fields layout */
.form-row[b-vccdps1fm4] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.form-group[b-vccdps1fm4] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label[b-vccdps1fm4] {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Custom premium inputs */
.input-wrapper[b-vccdps1fm4] {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i[b-vccdps1fm4] {
    position: absolute;
    left: 1rem;
    color: #f5a623;
    font-size: 1.1rem;
    pointer-events: none;
}

.input-custom[b-vccdps1fm4] {
    width: 100%;
    padding: 0.85rem 1rem 0.85rem 2.5rem;
    border-radius: 12px;
    border: 1px solid #eee3d8;
    background-color: #faf5f0;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.input-custom[type="date"][b-vccdps1fm4], .input-custom[type="time"][b-vccdps1fm4] {
    position: relative;
}

.input-custom:focus[b-vccdps1fm4] {
    border-color: var(--primary-burgundy);
    box-shadow: 0 0 0 3px rgba(87, 2, 7, 0.05);
}

.select-arrow[b-vccdps1fm4] {
    position: absolute;
    right: 1rem;
    color: var(--text-secondary);
    pointer-events: none;
}

/* Duration adjusters row */
.adjusters-row[b-vccdps1fm4] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.adjuster-card[b-vccdps1fm4] {
    background-color: #faf5f0;
    border: 1px solid #eee3d8;
    border-radius: 16px;
    padding: 1.25rem;
    text-align: center;
}

.adjuster-card h5[b-vccdps1fm4] {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    margin-bottom: 0.25rem;
}

.adjuster-card p[b-vccdps1fm4] {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.counter-control[b-vccdps1fm4] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.btn-counter[b-vccdps1fm4] {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #e0d5cb;
    background-color: white;
    color: #f5a623;
    font-size: 1.2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-counter:hover[b-vccdps1fm4] {
    background-color: #f5a623;
    color: white;
    border-color: #f5a623;
}

.counter-value[b-vccdps1fm4] {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    min-width: 40px;
}

.counter-unit[b-vccdps1fm4] {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-left: 0.25rem;
}

/* Calculated read-only row */
.read-only-display[b-vccdps1fm4] {
    background-color: #f2eae1;
    border-radius: 12px;
    padding: 0.85rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
}

.read-only-display i[b-vccdps1fm4] {
    color: #f5a623;
    font-size: 1.2rem;
}

.read-only-display span[b-vccdps1fm4] {
    font-weight: 700;
    font-size: 1rem;
}

.read-only-label[b-vccdps1fm4] {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
    display: block;
    font-weight: 600;
}

/* Notes Textarea styling */
.notes-textarea-container[b-vccdps1fm4] {
    position: relative;
    margin-bottom: 2rem;
}

.notes-textarea[b-vccdps1fm4] {
    width: 100%;
    min-height: 100px;
    padding: 1rem 1rem 1rem 2.5rem;
    border-radius: 12px;
    border: 1px solid #eee3d8;
    background-color: #faf5f0;
    color: var(--text-primary);
    font-size: 0.95rem;
    outline: none;
    resize: none;
    transition: border-color 0.2s;
}

.notes-textarea:focus[b-vccdps1fm4] {
    border-color: var(--primary-burgundy);
}

.notes-icon-left[b-vccdps1fm4] {
    position: absolute;
    left: 1rem;
    top: 1.1rem;
    color: #f5a623;
    font-size: 1.1rem;
    pointer-events: none;
}

/* Action button bar styling */
.action-buttons-bar[b-vccdps1fm4] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
}

.buttons-left[b-vccdps1fm4] {
    display: flex;
    gap: 1rem;
}

.btn-save-changes[b-vccdps1fm4] {
    background-color: #f5a623;
    color: white;
    border: none;
    border-radius: 12px;
    padding: 0.85rem 2.25rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.1s;
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.25);
}

.btn-save-changes:hover[b-vccdps1fm4] {
    opacity: 0.92;
}

.btn-save-changes:active[b-vccdps1fm4] {
    transform: scale(0.98);
}

.btn-cancel[b-vccdps1fm4] {
    background-color: white;
    color: var(--primary-burgundy);
    border: 1.5px solid #e2d7cc;
    border-radius: 12px;
    padding: 0.85rem 2rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
    text-decoration: none;
}

.btn-cancel:hover[b-vccdps1fm4] {
    background-color: #faf5f0;
}

.btn-delete-entry[b-vccdps1fm4] {
    background: transparent;
    border: none;
    color: #d9534f;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background-color 0.2s;
}

.btn-delete-entry:hover[b-vccdps1fm4] {
    background-color: rgba(217, 83, 79, 0.08);
}

/* Right Sidebar: Summary */
.summary-sidebar-card[b-vccdps1fm4] {
    background-color: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(87, 2, 7, 0.04);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: fit-content;
}

.summary-title[b-vccdps1fm4] {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0;
}

.summary-title-icon-wrapper[b-vccdps1fm4] {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #faefe6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.summary-title-icon-wrapper i[b-vccdps1fm4] {
    color: var(--primary-burgundy);
}

.summary-list[b-vccdps1fm4] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.summary-item[b-vccdps1fm4] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #f3ede6;
}

.summary-item-label[b-vccdps1fm4] {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.summary-item-label i[b-vccdps1fm4] {
    color: #f5a623;
    font-size: 1rem;
}

.summary-item-value[b-vccdps1fm4] {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* Warning alert box */
.warning-alert-box[b-vccdps1fm4] {
    background-color: #fff8ee;
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid #f7e7d3;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.warning-alert-box i[b-vccdps1fm4] {
    color: #f5a623;
    font-size: 1.25rem;
    margin-top: 0.1rem;
}

.warning-alert-box p[b-vccdps1fm4] {
    font-size: 0.8rem;
    color: #8a6d3b;
    margin: 0;
    line-height: 1.4;
}

/* Loading state card styling */
.loading-card-container[b-vccdps1fm4] {
    background-color: white;
    border-radius: 20px;
    padding: 4rem 2rem;
    box-shadow: 0 4px 20px rgba(87, 2, 7, 0.04);
    text-align: center;
    width: 100%;
    margin-top: 1rem;
}

/* Mobile Responsive Enhancements */
@media (max-width: 768px) {
    .edit-header-row[b-vccdps1fm4] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.85rem;
    }

    .edit-title h1[b-vccdps1fm4] {
        font-size: 1.4rem;
        word-break: break-word;
    }

    .baby-profile-badge[b-vccdps1fm4] {
        align-self: flex-start;
    }

    .form-row[b-vccdps1fm4] {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 0.35rem !important;
        width: 100% !important;
    }

    .input-custom[b-vccdps1fm4] {
        padding: 0.5rem 0.3rem 0.5rem 1.8rem !important;
        font-size: 0.78rem !important;
    }

    .input-wrapper i[b-vccdps1fm4] {
        left: 0.5rem !important;
        font-size: 0.85rem !important;
    }

    .type-grid[b-vccdps1fm4] {
        display: grid !important;
        grid-template-columns: repeat(5, 1fr) !important;
        gap: 0.25rem !important;
        width: 100% !important;
    }

    .type-card[b-vccdps1fm4] {
        padding: 0.4rem 0.15rem !important;
        text-align: center !important;
    }

    .type-card p[b-vccdps1fm4] {
        font-size: 0.65rem !important;
        margin-top: 0.2rem !important;
        line-height: 1.1 !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    .type-card i.type-icon[b-vccdps1fm4] {
        font-size: 1.2rem !important;
    }

    .level-toggle[b-vccdps1fm4] {
        height: 44px !important;
        padding: 3px !important;
    }

    .level-btn[b-vccdps1fm4] {
        font-size: 0.72rem !important;
        padding: 0.3rem 0 !important;
        gap: 3px !important;
    }

    .adjusters-row[b-vccdps1fm4] {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }

    .calculated-row[b-vccdps1fm4] {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }

    .edit-form-card[b-vccdps1fm4] {
        padding: 1.25rem 1rem;
        border-radius: 16px;
    }

    .summary-sidebar-card[b-vccdps1fm4] {
        padding: 1.25rem 1rem;
        border-radius: 16px;
    }

    .action-buttons-bar[b-vccdps1fm4] {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .buttons-left[b-vccdps1fm4] {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .btn-save-changes[b-vccdps1fm4], .btn-cancel[b-vccdps1fm4] {
        width: 100%;
        text-align: center;
    }

    .btn-delete-entry[b-vccdps1fm4] {
        justify-content: center;
        width: 100%;
    }
}

/* Diaper Type Grid matching Diaper main page */
.type-grid[b-vccdps1fm4] {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.5rem;
    width: 100%;
}

.type-card[b-vccdps1fm4] {
    background-color: white;
    border: 1.5px solid transparent;
    border-radius: 12px;
    padding: 0.8rem 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

.type-card.active[b-vccdps1fm4] {
    border-color: var(--accent-gold) !important;
}

.type-icon[b-vccdps1fm4] {
    font-size: 1.8rem;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.type-card p[b-vccdps1fm4] {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 600;
}

.check-badge[b-vccdps1fm4] {
    position: absolute;
    top: -6px;
    right: -6px;
    background-color: var(--accent-gold);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.plus-badge[b-vccdps1fm4] {
    position: absolute;
    top: 4px;
    right: 8px;
    color: #f5a623;
    font-weight: bold;
    font-size: 1rem;
}

/* Add Details Row matching Diaper main page */
.details-row[b-vccdps1fm4] {
    display: flex;
    gap: 0.5rem;
    align-items: stretch;
    width: 100%;
}

.detail-group[b-vccdps1fm4] {
    background-color: white;
    border-radius: 10px;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
    flex: 1;
}

.detail-group.flex-2[b-vccdps1fm4] {
    flex: 1.5;
}

.detail-group label[b-vccdps1fm4] {
    font-size: 0.7rem;
    color: var(--text-secondary);
    margin-bottom: 0.2rem;
    padding-left: 0.2rem;
}

.level-section[b-vccdps1fm4] {
    width: 100%;
}

.level-toggle[b-vccdps1fm4] {
    display: flex;
    background-color: #fffaf0;
    border-radius: 10px;
    padding: 3px;
    border: 1px solid #eee3d8;
    width: 100%;
    height: 48px;
}

.level-btn[b-vccdps1fm4] {
    flex: 1;
    border: 1px solid transparent;
    background: transparent;
    padding: 0.5rem 0;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.level-btn.active[b-vccdps1fm4] {
    background-color: white !important;
    color: var(--primary-burgundy) !important;
    border-color: #eee3d8 !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06) !important;
}

.notes-input-container[b-vccdps1fm4] {
    display: flex;
    align-items: center;
    background-color: white;
    border: 1px solid rgba(87, 2, 7, 0.08);
    border-radius: 8px;
    padding: 0.4rem 0.6rem;
}

.notes-input[b-vccdps1fm4] {
    border: none;
    outline: none;
    width: 100%;
    font-size: 0.85rem;
    background: transparent;
}

/* =============================================
   MODAL & TOAST STYLES
   ============================================= */

.modal-overlay[b-vccdps1fm4] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    backdrop-filter: blur(2px);
    animation: fadeIn-b-vccdps1fm4 0.2s ease-out;
}

@keyframes fadeIn-b-vccdps1fm4 {
    from { opacity: 0; }
    to { opacity: 1; }
}

.delete-modal[b-vccdps1fm4], .loading-modal[b-vccdps1fm4] {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    width: 90%;
    max-width: 400px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: slideUp-b-vccdps1fm4 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes slideUp-b-vccdps1fm4 {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-close[b-vccdps1fm4] {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
    transition: color 0.2s;
}

.modal-close:hover[b-vccdps1fm4] {
    color: #333;
}

.modal-icon-container[b-vccdps1fm4] {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.modal-icon-circle[b-vccdps1fm4] {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #fff8eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #f5a623;
}

.modal-title[b-vccdps1fm4] {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    margin-bottom: 0.5rem;
}

.modal-message[b-vccdps1fm4] {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.modal-buttons[b-vccdps1fm4] {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-modal-cancel[b-vccdps1fm4] {
    flex: 1;
    background: white;
    border: 1.5px solid #d9534f;
    color: #d9534f;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-modal-cancel:hover[b-vccdps1fm4] {
    background: #fff5f5;
}

.btn-modal-delete[b-vccdps1fm4] {
    flex: 1;
    background: #8B0000;
    border: none;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 0;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-modal-delete:hover[b-vccdps1fm4] {
    background: #730000;
}

/* Success Toast */
.success-toast[b-vccdps1fm4] {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f2fbf5;
    border: 1px solid #c8e6c9;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border-radius: 12px;
    padding: 12px 20px 12px 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    z-index: 1100;
    animation: toastSlideDown-b-vccdps1fm4 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes toastSlideDown-b-vccdps1fm4 {
    from { transform: translate(-50%, -40px); opacity: 0; }
    to { transform: translate(-50%, 0); opacity: 1; }
}

.toast-icon[b-vccdps1fm4] {
    font-size: 1.4rem;
    color: #2e7d32;
    margin-top: 2px;
}

.toast-content h4[b-vccdps1fm4] {
    margin: 0 0 2px 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: #2e7d32;
}

.toast-content p[b-vccdps1fm4] {
    margin: 0;
    font-size: 0.85rem;
    color: #4caf50;
}

.toast-close[b-vccdps1fm4] {
    background: transparent;
    border: none;
    font-size: 1.2rem;
    color: #81c784;
    cursor: pointer;
    margin-left: 10px;
}

.toast-close:hover[b-vccdps1fm4] {
    color: #2e7d32;
}
/* /Components/Pages/EditFeed.razor.rz.scp.css */
/* Edit Page Specific Layout */
.edit-container[b-b4ejfnpvgh] {
    width: 100%;
    padding-top: 1rem;
    padding-bottom: 2rem;
    color: var(--text-primary);
}

/* Breadcrumbs style */
.breadcrumbs[b-b4ejfnpvgh] {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.breadcrumbs span[b-b4ejfnpvgh] {
    margin: 0 0.5rem;
    color: #ccc;
}

/* Header Row layout */
.edit-header-row[b-b4ejfnpvgh] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
    width: 100%;
}

.edit-title[b-b4ejfnpvgh] {
    flex: 1;
}

.edit-title h1[b-b4ejfnpvgh] {
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    margin: 0;
    line-height: 1.2;
}

.edit-title p[b-b4ejfnpvgh] {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0.3rem 0 0 0;
}

/* Baby profile badge */
.baby-profile-badge[b-b4ejfnpvgh] {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    background-color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(87, 2, 7, 0.05);
    white-space: nowrap;
    flex-shrink: 0;
}

.baby-avatar-img[b-b4ejfnpvgh] {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f5a623;
}

.baby-badge-info h4[b-b4ejfnpvgh] {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    margin: 0;
}

.baby-badge-info p[b-b4ejfnpvgh] {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Back navigation */
.back-navigation[b-b4ejfnpvgh] {
    margin-bottom: 1.5rem;
}

.back-link[b-b4ejfnpvgh] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-burgundy);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
}

.back-link:hover[b-b4ejfnpvgh] {
    color: #f5a623;
}

/* Two column layout */
.edit-content-grid[b-b4ejfnpvgh] {
    display: grid;
    grid-template-columns: 7fr 3.5fr;
    gap: 1.5rem;
    width: 100%;
}

@media (max-width: 992px) {
    .edit-content-grid[b-b4ejfnpvgh] {
        grid-template-columns: 1fr;
    }
}

/* Form panel card */
.edit-form-card[b-b4ejfnpvgh] {
    background-color: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(87, 2, 7, 0.04);
}

.card-section-title[b-b4ejfnpvgh] {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.card-section-title i[b-b4ejfnpvgh] {
    color: #f5a623;
    font-size: 1.2rem;
}

/* Form fields layout */
.form-row[b-b4ejfnpvgh] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.form-group[b-b4ejfnpvgh] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label[b-b4ejfnpvgh] {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Custom premium inputs */
.input-wrapper[b-b4ejfnpvgh] {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i[b-b4ejfnpvgh] {
    position: absolute;
    left: 1rem;
    color: #f5a623;
    font-size: 1.1rem;
    pointer-events: none;
}

.input-custom[b-b4ejfnpvgh] {
    width: 100%;
    padding: 0.85rem 1rem 0.85rem 2.5rem;
    border-radius: 12px;
    border: 1px solid #eee3d8;
    background-color: #faf5f0;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.input-custom[type="date"][b-b4ejfnpvgh], .input-custom[type="time"][b-b4ejfnpvgh] {
    position: relative;
}

.input-custom:focus[b-b4ejfnpvgh] {
    border-color: var(--primary-burgundy);
    box-shadow: 0 0 0 3px rgba(87, 2, 7, 0.05);
}

.select-arrow[b-b4ejfnpvgh] {
    position: absolute;
    right: 1rem;
    color: var(--text-secondary);
    pointer-events: none;
}

/* Duration adjusters row */
.adjusters-row[b-b4ejfnpvgh] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.adjuster-card[b-b4ejfnpvgh] {
    background-color: #faf5f0;
    border: 1px solid #eee3d8;
    border-radius: 16px;
    padding: 1.25rem;
    text-align: center;
}

.adjuster-card h5[b-b4ejfnpvgh] {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    margin-bottom: 0.25rem;
}

.adjuster-card p[b-b4ejfnpvgh] {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.counter-control[b-b4ejfnpvgh] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.btn-counter[b-b4ejfnpvgh] {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #e0d5cb;
    background-color: white;
    color: #f5a623;
    font-size: 1.2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-counter:hover[b-b4ejfnpvgh] {
    background-color: #f5a623;
    color: white;
    border-color: #f5a623;
}

.counter-value[b-b4ejfnpvgh] {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    min-width: 40px;
}

.counter-unit[b-b4ejfnpvgh] {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-left: 0.25rem;
}

/* Calculated read-only row */
.read-only-display[b-b4ejfnpvgh] {
    background-color: #f2eae1;
    border-radius: 12px;
    padding: 0.85rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
}

.read-only-display i[b-b4ejfnpvgh] {
    color: #f5a623;
    font-size: 1.2rem;
}

.read-only-display span[b-b4ejfnpvgh] {
    font-weight: 700;
    font-size: 1rem;
}

.read-only-label[b-b4ejfnpvgh] {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
    display: block;
    font-weight: 600;
}

/* Notes Textarea styling */
.notes-textarea-container[b-b4ejfnpvgh] {
    position: relative;
    margin-bottom: 2rem;
}

.notes-textarea[b-b4ejfnpvgh] {
    width: 100%;
    min-height: 100px;
    padding: 1rem 1rem 1rem 2.5rem;
    border-radius: 12px;
    border: 1px solid #eee3d8;
    background-color: #faf5f0;
    color: var(--text-primary);
    font-size: 0.95rem;
    outline: none;
    resize: none;
    transition: border-color 0.2s;
}

.notes-textarea:focus[b-b4ejfnpvgh] {
    border-color: var(--primary-burgundy);
}

.notes-icon-left[b-b4ejfnpvgh] {
    position: absolute;
    left: 1rem;
    top: 1.1rem;
    color: #f5a623;
    font-size: 1.1rem;
    pointer-events: none;
}

/* Action button bar styling */
.action-buttons-bar[b-b4ejfnpvgh] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
}

.buttons-left[b-b4ejfnpvgh] {
    display: flex;
    gap: 1rem;
}

.btn-save-changes[b-b4ejfnpvgh] {
    background-color: #f5a623;
    color: white;
    border: none;
    border-radius: 12px;
    padding: 0.85rem 2.25rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.1s;
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.25);
}

.btn-save-changes:hover[b-b4ejfnpvgh] {
    opacity: 0.92;
}

.btn-save-changes:active[b-b4ejfnpvgh] {
    transform: scale(0.98);
}

.btn-cancel[b-b4ejfnpvgh] {
    background-color: white;
    color: var(--primary-burgundy);
    border: 1.5px solid #e2d7cc;
    border-radius: 12px;
    padding: 0.85rem 2rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
    text-decoration: none;
}

.btn-cancel:hover[b-b4ejfnpvgh] {
    background-color: #faf5f0;
}

.btn-delete-entry[b-b4ejfnpvgh] {
    background: transparent;
    border: none;
    color: #d9534f;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background-color 0.2s;
}

.btn-delete-entry:hover[b-b4ejfnpvgh] {
    background-color: rgba(217, 83, 79, 0.08);
}

/* Right Sidebar: Summary */
.summary-sidebar-card[b-b4ejfnpvgh] {
    background-color: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(87, 2, 7, 0.04);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: fit-content;
}

.summary-title[b-b4ejfnpvgh] {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0;
}

.summary-title-icon-wrapper[b-b4ejfnpvgh] {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #faefe6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.summary-title-icon-wrapper i[b-b4ejfnpvgh] {
    color: var(--primary-burgundy);
}

.summary-list[b-b4ejfnpvgh] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.summary-item[b-b4ejfnpvgh] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #f3ede6;
}

.summary-item-label[b-b4ejfnpvgh] {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.summary-item-label i[b-b4ejfnpvgh] {
    color: #f5a623;
    font-size: 1rem;
}

.summary-item-value[b-b4ejfnpvgh] {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* Warning alert box */
.warning-alert-box[b-b4ejfnpvgh] {
    background-color: #fff8ee;
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid #f7e7d3;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.warning-alert-box i[b-b4ejfnpvgh] {
    color: #f5a623;
    font-size: 1.25rem;
    margin-top: 0.1rem;
}

.warning-alert-box p[b-b4ejfnpvgh] {
    font-size: 0.8rem;
    color: #8a6d3b;
    margin: 0;
    line-height: 1.4;
}

/* Loading state card styling */
.loading-card-container[b-b4ejfnpvgh] {
    background-color: white;
    border-radius: 20px;
    padding: 4rem 2rem;
    box-shadow: 0 4px 20px rgba(87, 2, 7, 0.04);
    text-align: center;
    width: 100%;
    margin-top: 1rem;
}

/* Mobile Responsive Enhancements */
@media (max-width: 768px) {
    .edit-header-row[b-b4ejfnpvgh] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.85rem;
    }

    .edit-title h1[b-b4ejfnpvgh] {
        font-size: 1.3rem;
        word-break: break-word;
    }

    .baby-profile-badge[b-b4ejfnpvgh] {
        align-self: flex-start;
        padding: 0.35rem 0.85rem;
    }

    /* Date and Time: Single Row 2 Columns on Mobile */
    .form-row[b-b4ejfnpvgh] {
        grid-template-columns: 1fr 1fr !important;
        gap: 0.5rem !important;
    }

    .input-custom[b-b4ejfnpvgh] {
        padding: 0.65rem 0.5rem 0.65rem 2rem !important;
        font-size: 0.85rem !important;
    }

    .input-wrapper i[b-b4ejfnpvgh] {
        left: 0.6rem !important;
        font-size: 0.95rem !important;
    }

    /* Left and Right Breast: Single Row 2 Columns on Mobile */
    .breast-timers-row[b-b4ejfnpvgh] {
        grid-template-columns: 1fr 1fr !important;
        gap: 0.5rem !important;
    }

    .breast-timer-card[b-b4ejfnpvgh] {
        padding: 0.6rem 0.35rem !important;
    }

    .breast-timer-card h5[b-b4ejfnpvgh] {
        font-size: 0.85rem !important;
    }

    .breast-timer-card p[b-b4ejfnpvgh] {
        font-size: 0.7rem !important;
        margin-bottom: 0.4rem !important;
    }

    .amount-adjuster.timer-adjuster-pill[b-b4ejfnpvgh] {
        padding: 0.2rem 0.3rem !important;
        gap: 4px !important;
    }

    .timer-display[b-b4ejfnpvgh] {
        font-size: 1.3rem !important;
        min-width: 28px !important;
    }

    .adjust-btn[b-b4ejfnpvgh] {
        width: 26px !important;
        height: 26px !important;
        font-size: 1rem !important;
    }

    .unit-text[b-b4ejfnpvgh] {
        font-size: 0.75rem !important;
    }

    /* Total and Last Fed: Single Row 2 Columns on Mobile */
    .breast-details-row-2col[b-b4ejfnpvgh] {
        grid-template-columns: 1fr 1fr !important;
        gap: 0.5rem !important;
    }

    .breast-details-row-2col .detail-box[b-b4ejfnpvgh] {
        padding: 0.5rem 0.6rem !important;
    }

    .detail-box h4[b-b4ejfnpvgh] {
        font-size: 1rem !important;
    }

    .detail-icon[b-b4ejfnpvgh] {
        font-size: 1.4rem !important;
    }

    /* Notes: Single Full-Width Row */
    .breast-notes-row-full[b-b4ejfnpvgh] {
        margin-bottom: 1rem !important;
    }

    .edit-form-card[b-b4ejfnpvgh] {
        padding: 1rem 0.75rem !important;
        border-radius: 14px;
    }

    /* History Summary: Compact & Fits Inside Mobile Viewport */
    .summary-sidebar-card[b-b4ejfnpvgh] {
        padding: 1rem 0.85rem !important;
        border-radius: 14px !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
    }

    .summary-title[b-b4ejfnpvgh] {
        font-size: 0.95rem !important;
    }

    .summary-title-icon-wrapper[b-b4ejfnpvgh] {
        width: 30px !important;
        height: 30px !important;
    }

    .summary-item-label[b-b4ejfnpvgh] {
        font-size: 0.78rem !important;
    }

    .summary-item-value[b-b4ejfnpvgh] {
        font-size: 0.82rem !important;
    }

    /* Action Buttons: Compact Save/Cancel */
    .action-buttons-bar[b-b4ejfnpvgh] {
        flex-direction: column;
        gap: 0.75rem;
        align-items: stretch;
    }

    .buttons-left[b-b4ejfnpvgh] {
        flex-direction: row !important;
        width: 100%;
        gap: 0.5rem !important;
    }

    .btn-save-changes[b-b4ejfnpvgh], .btn-cancel[b-b4ejfnpvgh] {
        flex: 1 !important;
        width: auto !important;
        padding: 0.6rem 0.5rem !important;
        font-size: 0.82rem !important;
        text-align: center !important;
        border-radius: 10px !important;
        white-space: nowrap !important;
    }

    .btn-delete-entry[b-b4ejfnpvgh] {
        justify-content: center;
        width: 100%;
        font-size: 0.82rem !important;
        padding: 0.4rem !important;
    }
}

/* ===== Bottle Feeding Specific Styles ===== */

.section-title[b-b4ejfnpvgh] {
    color: var(--primary-burgundy);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.number-badge[b-b4ejfnpvgh] {
    background-color: var(--primary-burgundy);
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
}

.milk-type-grid[b-b4ejfnpvgh] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.milk-card[b-b4ejfnpvgh] {
    background-color: #faf5f0;
    border: 1.5px solid #eee3d8;
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

.milk-card.active[b-b4ejfnpvgh] {
    border-color: #f5a623;
    background-color: #fff8ee;
}

/* Breastfeeding Timers & Details */
.breast-timers-row[b-b4ejfnpvgh] {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.breast-timer-card[b-b4ejfnpvgh] {
    flex: 1;
    background-color: #fef7f0;
    border: 1px solid rgba(87, 2, 7, 0.08);
    border-radius: 14px;
    padding: 0.85rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.breast-timer-card h5[b-b4ejfnpvgh] {
    color: var(--primary-burgundy);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.breast-timer-card p[b-b4ejfnpvgh] {
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
}

.timer-adjuster-wrapper[b-b4ejfnpvgh] {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    width: 100%;
}

.amount-adjuster.timer-adjuster-pill[b-b4ejfnpvgh] {
    background-color: #ffffff;
    border-radius: 40px;
    padding: 0.4rem 0.8rem;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.timer-display[b-b4ejfnpvgh] {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    min-width: 45px;
    text-align: center;
    line-height: 1;
}

.unit-text[b-b4ejfnpvgh] {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Breastfeeding Details Row: Total Duration & Last Fed From (1 row 2 columns) */
.breast-details-row-2col[b-b4ejfnpvgh] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1rem;
    width: 100%;
}

.breast-details-row-2col .detail-box[b-b4ejfnpvgh] {
    background-color: white;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    border: 1px solid rgba(87, 2, 7, 0.08);
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    min-width: 0;
    box-sizing: border-box;
}

/* Breast Notes Row: Full Width */
.breast-notes-row-full[b-b4ejfnpvgh] {
    width: 100%;
    margin-bottom: 1.5rem;
}

.detail-box[b-b4ejfnpvgh] {
    flex: 1;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.detail-box p[b-b4ejfnpvgh] {
    margin: 0;
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 2px;
}

.detail-box h4[b-b4ejfnpvgh] {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-burgundy);
}

.detail-box h4 span[b-b4ejfnpvgh] {
    font-size: 0.75rem;
    font-weight: 500;
}

.detail-icon[b-b4ejfnpvgh] {
    font-size: 2rem;
    color: var(--accent-gold);
    line-height: 1;
}

.last-fed-dropdown[b-b4ejfnpvgh] {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 0.9rem;
    color: var(--primary-burgundy);
    font-weight: 600;
    outline: none;
    cursor: pointer;
}

.milk-card p[b-b4ejfnpvgh] {
    margin: 0.5rem 0 0 0;
    font-size: 0.85rem;
    color: var(--primary-burgundy);
    font-weight: 600;
}

.milk-icon[b-b4ejfnpvgh] {
    font-size: 1.6rem;
}

.check-badge[b-b4ejfnpvgh] {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #f5a623;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.plus-badge[b-b4ejfnpvgh] {
    position: absolute;
    top: 5px;
    right: 5px;
    color: #f5a623;
    font-size: 1.2rem;
    font-weight: 400;
}

/* Amount selector row */
.amount-selector-row[b-b4ejfnpvgh] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.amount-adjuster[b-b4ejfnpvgh] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    border: 1px solid #eee3d8;
    border-radius: 40px;
    padding: 0.5rem 1rem;
    height: 55px;
    background-color: #faf5f0;
}

.adjust-btn[b-b4ejfnpvgh] {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.2s;
}

.adjust-btn.minus[b-b4ejfnpvgh] {
    background-color: #faead5;
    color: #f5a623;
}

.adjust-btn.plus[b-b4ejfnpvgh] {
    background-color: #faead5;
    color: #f5a623;
}

.adjust-btn:hover[b-b4ejfnpvgh] {
    background-color: #f5a623;
    color: white;
}

.amount-display[b-b4ejfnpvgh] {
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: baseline !important;
    justify-content: center !important;
    gap: 4px !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: var(--primary-burgundy) !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    margin: 0 !important;
}

.amount-display span[b-b4ejfnpvgh] {
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    display: inline !important;
}

.unit-toggle[b-b4ejfnpvgh] {
    display: flex;
    background-color: #faf5f0;
    border-radius: 30px;
    padding: 4px;
    border: 1px solid #eee3d8;
    height: 55px;
}

.unit-btn[b-b4ejfnpvgh] {
    border: none;
    background: transparent;
    padding: 6px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    cursor: pointer;
    transition: all 0.2s;
}

.unit-btn.active[b-b4ejfnpvgh] {
    background-color: #f5a623;
    color: white;
}

.quick-amounts[b-b4ejfnpvgh] {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.quick-btn[b-b4ejfnpvgh] {
    flex: 1;
    background-color: #faf5f0;
    border: 1px solid #eee3d8;
    border-radius: 20px;
    padding: 0.5rem 0;
    color: var(--primary-burgundy);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
}

.quick-btn:hover[b-b4ejfnpvgh] {
    border-color: #f5a623;
}

.quick-btn.active[b-b4ejfnpvgh] {
    background-color: #f5a623;
    border-color: #f5a623;
    color: white;
}

/* Bottle/Solids Mobile Responsive */
@media (max-width: 768px) {
    .milk-type-grid[b-b4ejfnpvgh] {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 0.35rem !important;
        width: 100% !important;
    }

    .milk-card[b-b4ejfnpvgh] {
        padding: 0.5rem 0.2rem !important;
        text-align: center !important;
    }

    .milk-card p[b-b4ejfnpvgh] {
        font-size: 0.68rem !important;
        margin-top: 0.25rem !important;
        line-height: 1.1 !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    .milk-card i.milk-icon[b-b4ejfnpvgh] {
        font-size: 1.25rem !important;
    }

    .amount-selector-row[b-b4ejfnpvgh] {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 0.5rem !important;
        align-items: center !important;
        width: 100% !important;
    }

    .amount-adjuster[b-b4ejfnpvgh] {
        width: 100% !important;
        height: 44px !important;
        padding: 0.35rem 0.5rem !important;
        border-radius: 25px !important;
        box-sizing: border-box !important;
    }

    .unit-toggle[b-b4ejfnpvgh] {
        width: 100% !important;
        height: 44px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 3px !important;
        box-sizing: border-box !important;
    }

    .unit-btn[b-b4ejfnpvgh] {
        flex: 1 !important;
        padding: 4px 8px !important;
        font-size: 0.8rem !important;
    }

    .quick-amounts[b-b4ejfnpvgh] {
        flex-wrap: wrap !important;
    }

    .notes-textarea-container[b-b4ejfnpvgh] {
        min-height: 44px !important;
    }

    .notes-textarea[b-b4ejfnpvgh] {
        min-height: 44px !important;
        height: 44px !important;
        padding: 0.5rem 0.6rem 0.5rem 2.3rem !important;
        font-size: 0.85rem !important;
    }

    .notes-icon-left[b-b4ejfnpvgh] {
        top: 50% !important;
        transform: translateY(-50%) !important;
    }
}

/* =============================================
   MODAL & TOAST STYLES
   ============================================= */

.modal-overlay[b-b4ejfnpvgh] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    backdrop-filter: blur(2px);
    animation: fadeIn-b-b4ejfnpvgh 0.2s ease-out;
}

@keyframes fadeIn-b-b4ejfnpvgh {
    from { opacity: 0; }
    to { opacity: 1; }
}

.delete-modal[b-b4ejfnpvgh], .loading-modal[b-b4ejfnpvgh] {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    width: 90%;
    max-width: 400px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: slideUp-b-b4ejfnpvgh 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes slideUp-b-b4ejfnpvgh {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-close[b-b4ejfnpvgh] {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
    transition: color 0.2s;
}

.modal-close:hover[b-b4ejfnpvgh] {
    color: #333;
}

.modal-icon-container[b-b4ejfnpvgh] {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.modal-icon-circle[b-b4ejfnpvgh] {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #fff8eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #f5a623;
}

.modal-title[b-b4ejfnpvgh] {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    margin-bottom: 0.5rem;
}

.modal-message[b-b4ejfnpvgh] {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.modal-buttons[b-b4ejfnpvgh] {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-modal-cancel[b-b4ejfnpvgh] {
    flex: 1;
    background: white;
    border: 1.5px solid #d9534f;
    color: #d9534f;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-modal-cancel:hover[b-b4ejfnpvgh] {
    background: #fff5f5;
}

.btn-modal-delete[b-b4ejfnpvgh] {
    flex: 1;
    background: #8B0000;
    border: none;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 0;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-modal-delete:hover[b-b4ejfnpvgh] {
    background: #730000;
}

/* Success Toast */
.success-toast[b-b4ejfnpvgh] {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f2fbf5;
    border: 1px solid #c8e6c9;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border-radius: 12px;
    padding: 12px 20px 12px 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    z-index: 1100;
    animation: toastSlideDown-b-b4ejfnpvgh 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes toastSlideDown-b-b4ejfnpvgh {
    from { transform: translate(-50%, -40px); opacity: 0; }
    to { transform: translate(-50%, 0); opacity: 1; }
}

.toast-icon[b-b4ejfnpvgh] {
    font-size: 1.4rem;
    color: #2e7d32;
    margin-top: 2px;
}

.toast-content h4[b-b4ejfnpvgh] {
    margin: 0 0 2px 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: #2e7d32;
}

.toast-content p[b-b4ejfnpvgh] {
    margin: 0;
    font-size: 0.85rem;
    color: #4caf50;
}

.toast-close[b-b4ejfnpvgh] {
    background: transparent;
    border: none;
    font-size: 1.2rem;
    color: #81c784;
    cursor: pointer;
    margin-left: 10px;
}

.toast-close:hover[b-b4ejfnpvgh] {
    color: #2e7d32;
}
/* /Components/Pages/EditGrowth.razor.rz.scp.css */
/* Edit Page Specific Layout */
.edit-container[b-e0kci9hw3e] {
    width: 100%;
    padding-top: 1rem;
    padding-bottom: 2rem;
    color: var(--text-primary);
}

/* Breadcrumbs style */
.breadcrumbs[b-e0kci9hw3e] {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.breadcrumbs span[b-e0kci9hw3e] {
    margin: 0 0.5rem;
    color: #ccc;
}

/* Header Row layout */
.edit-header-row[b-e0kci9hw3e] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
    width: 100%;
}

.edit-title[b-e0kci9hw3e] {
    flex: 1;
}

.edit-title h1[b-e0kci9hw3e] {
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    margin: 0;
    line-height: 1.2;
}

.edit-title p[b-e0kci9hw3e] {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0.3rem 0 0 0;
}

/* Baby profile badge */
.baby-profile-badge[b-e0kci9hw3e] {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    background-color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(87, 2, 7, 0.05);
    white-space: nowrap;
    flex-shrink: 0;
}

.baby-avatar-img[b-e0kci9hw3e] {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f5a623;
}

.baby-badge-info h4[b-e0kci9hw3e] {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    margin: 0;
}

.baby-badge-info p[b-e0kci9hw3e] {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Back navigation */
.back-navigation[b-e0kci9hw3e] {
    margin-bottom: 1.5rem;
}

.back-link[b-e0kci9hw3e] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-burgundy);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
}

.back-link:hover[b-e0kci9hw3e] {
    color: #f5a623;
}

/* Two column layout */
.edit-content-grid[b-e0kci9hw3e] {
    display: grid;
    grid-template-columns: 7fr 3.5fr;
    gap: 1.5rem;
    width: 100%;
}

@media (max-width: 992px) {
    .edit-content-grid[b-e0kci9hw3e] {
        grid-template-columns: 1fr;
    }
}

/* Form panel card */
.edit-form-card[b-e0kci9hw3e] {
    background-color: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(87, 2, 7, 0.04);
}

.card-section-title[b-e0kci9hw3e] {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.card-section-title i[b-e0kci9hw3e] {
    color: #f5a623;
    font-size: 1.2rem;
}

/* Form fields layout */
.form-row[b-e0kci9hw3e] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.form-group[b-e0kci9hw3e] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label[b-e0kci9hw3e] {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Custom premium inputs */
.input-with-unit[b-e0kci9hw3e] {
    display: flex;
    background-color: #fff;
    border: 1px solid rgba(87, 2, 7, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.input-with-unit input[b-e0kci9hw3e] {
    flex: 1;
    border: none;
    padding: 0.7rem 0.8rem;
    outline: none;
    color: var(--primary-burgundy);
    font-size: 0.95rem;
    font-weight: 600;
}

.input-with-unit select[b-e0kci9hw3e] {
    border: none;
    background-color: #f9f9f9;
    border-left: 1px solid rgba(87, 2, 7, 0.1);
    padding: 0 0.8rem;
    outline: none;
    color: var(--primary-burgundy);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
}

.input-wrapper[b-e0kci9hw3e] {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i[b-e0kci9hw3e] {
    position: absolute;
    left: 1rem;
    color: #f5a623;
    font-size: 1.1rem;
    pointer-events: none;
}

.input-custom[b-e0kci9hw3e] {
    width: 100%;
    padding: 0.85rem 1rem 0.85rem 2.5rem;
    border-radius: 12px;
    border: 1px solid #eee3d8;
    background-color: #faf5f0;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.input-custom[type="date"][b-e0kci9hw3e], .input-custom[type="time"][b-e0kci9hw3e] {
    position: relative;
}

.input-custom:focus[b-e0kci9hw3e] {
    border-color: var(--primary-burgundy);
    box-shadow: 0 0 0 3px rgba(87, 2, 7, 0.05);
}

.select-arrow[b-e0kci9hw3e] {
    position: absolute;
    right: 1rem;
    color: var(--text-secondary);
    pointer-events: none;
}

/* Duration adjusters row */
.adjusters-row[b-e0kci9hw3e] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.adjuster-card[b-e0kci9hw3e] {
    background-color: #faf5f0;
    border: 1px solid #eee3d8;
    border-radius: 16px;
    padding: 1.25rem;
    text-align: center;
}

.adjuster-card h5[b-e0kci9hw3e] {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    margin-bottom: 0.25rem;
}

.adjuster-card p[b-e0kci9hw3e] {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.counter-control[b-e0kci9hw3e] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.btn-counter[b-e0kci9hw3e] {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #e0d5cb;
    background-color: white;
    color: #f5a623;
    font-size: 1.2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-counter:hover[b-e0kci9hw3e] {
    background-color: #f5a623;
    color: white;
    border-color: #f5a623;
}

.counter-value[b-e0kci9hw3e] {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    min-width: 40px;
}

.counter-unit[b-e0kci9hw3e] {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-left: 0.25rem;
}

/* Calculated read-only row */
.read-only-display[b-e0kci9hw3e] {
    background-color: #f2eae1;
    border-radius: 12px;
    padding: 0.85rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
}

.read-only-display i[b-e0kci9hw3e] {
    color: #f5a623;
    font-size: 1.2rem;
}

.read-only-display span[b-e0kci9hw3e] {
    font-weight: 700;
    font-size: 1rem;
}

.read-only-label[b-e0kci9hw3e] {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
    display: block;
    font-weight: 600;
}

/* Notes Textarea styling */
.notes-textarea-container[b-e0kci9hw3e] {
    position: relative;
    margin-bottom: 2rem;
}

.notes-textarea[b-e0kci9hw3e] {
    width: 100%;
    min-height: 100px;
    padding: 1rem 1rem 1rem 2.5rem;
    border-radius: 12px;
    border: 1px solid #eee3d8;
    background-color: #faf5f0;
    color: var(--text-primary);
    font-size: 0.95rem;
    outline: none;
    resize: none;
    transition: border-color 0.2s;
}

.notes-textarea:focus[b-e0kci9hw3e] {
    border-color: var(--primary-burgundy);
}

.notes-icon-left[b-e0kci9hw3e] {
    position: absolute;
    left: 1rem;
    top: 1.1rem;
    color: #f5a623;
    font-size: 1.1rem;
    pointer-events: none;
}

/* Action button bar styling */
.action-buttons-bar[b-e0kci9hw3e] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
}

.buttons-left[b-e0kci9hw3e] {
    display: flex;
    gap: 1rem;
}

.btn-save-changes[b-e0kci9hw3e] {
    background-color: #f5a623;
    color: white;
    border: none;
    border-radius: 12px;
    padding: 0.85rem 2.25rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.1s;
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.25);
}

.btn-save-changes:hover[b-e0kci9hw3e] {
    opacity: 0.92;
}

.btn-save-changes:active[b-e0kci9hw3e] {
    transform: scale(0.98);
}

.btn-cancel[b-e0kci9hw3e] {
    background-color: white;
    color: var(--primary-burgundy);
    border: 1.5px solid #e2d7cc;
    border-radius: 12px;
    padding: 0.85rem 2rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
    text-decoration: none;
}

.btn-cancel:hover[b-e0kci9hw3e] {
    background-color: #faf5f0;
}

.btn-delete-entry[b-e0kci9hw3e] {
    background: transparent;
    border: none;
    color: #d9534f;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background-color 0.2s;
}

.btn-delete-entry:hover[b-e0kci9hw3e] {
    background-color: rgba(217, 83, 79, 0.08);
}

/* Right Sidebar: Summary */
.summary-sidebar-card[b-e0kci9hw3e] {
    background-color: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(87, 2, 7, 0.04);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: fit-content;
}

.summary-title[b-e0kci9hw3e] {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0;
}

.summary-title-icon-wrapper[b-e0kci9hw3e] {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #faefe6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.summary-title-icon-wrapper i[b-e0kci9hw3e] {
    color: var(--primary-burgundy);
}

.summary-list[b-e0kci9hw3e] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.summary-item[b-e0kci9hw3e] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #f3ede6;
}

.summary-item-label[b-e0kci9hw3e] {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.summary-item-label i[b-e0kci9hw3e] {
    color: #f5a623;
    font-size: 1rem;
}

.summary-item-value[b-e0kci9hw3e] {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* Warning alert box */
.warning-alert-box[b-e0kci9hw3e] {
    background-color: #fff8ee;
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid #f7e7d3;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.warning-alert-box i[b-e0kci9hw3e] {
    color: #f5a623;
    font-size: 1.25rem;
    margin-top: 0.1rem;
}

.warning-alert-box p[b-e0kci9hw3e] {
    font-size: 0.8rem;
    color: #8a6d3b;
    margin: 0;
    line-height: 1.4;
}

/* Loading state card styling */
.loading-card-container[b-e0kci9hw3e] {
    background-color: white;
    border-radius: 20px;
    padding: 4rem 2rem;
    box-shadow: 0 4px 20px rgba(87, 2, 7, 0.04);
    text-align: center;
    width: 100%;
    margin-top: 1rem;
}

/* Mobile Responsive Enhancements */
@media (max-width: 768px) {
    .edit-header-row[b-e0kci9hw3e] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.85rem;
    }

    .edit-title h1[b-e0kci9hw3e] {
        font-size: 1.4rem;
        word-break: break-word;
    }

    .baby-profile-badge[b-e0kci9hw3e] {
        align-self: flex-start;
    }

    .form-row[b-e0kci9hw3e] {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }

    .adjusters-row[b-e0kci9hw3e] {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }

    .calculated-row[b-e0kci9hw3e] {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }

    .edit-form-card[b-e0kci9hw3e] {
        padding: 1.25rem 1rem;
        border-radius: 16px;
    }

    .summary-sidebar-card[b-e0kci9hw3e] {
        padding: 1.25rem 1rem;
        border-radius: 16px;
    }

    .action-buttons-bar[b-e0kci9hw3e] {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .buttons-left[b-e0kci9hw3e] {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .btn-save-changes[b-e0kci9hw3e], .btn-cancel[b-e0kci9hw3e] {
        width: 100%;
        text-align: center;
    }

    .btn-delete-entry[b-e0kci9hw3e] {
        justify-content: center;
        width: 100%;
    }
}

/* =============================================
   MODAL & TOAST STYLES
   ============================================= */

.modal-overlay[b-e0kci9hw3e] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    backdrop-filter: blur(2px);
    animation: fadeIn-b-e0kci9hw3e 0.2s ease-out;
}

@keyframes fadeIn-b-e0kci9hw3e {
    from { opacity: 0; }
    to { opacity: 1; }
}

.delete-modal[b-e0kci9hw3e], .loading-modal[b-e0kci9hw3e] {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    width: 90%;
    max-width: 400px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: slideUp-b-e0kci9hw3e 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes slideUp-b-e0kci9hw3e {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-close[b-e0kci9hw3e] {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
    transition: color 0.2s;
}

.modal-close:hover[b-e0kci9hw3e] {
    color: #333;
}

.modal-icon-container[b-e0kci9hw3e] {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.modal-icon-circle[b-e0kci9hw3e] {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #fff8eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #f5a623;
}

.modal-title[b-e0kci9hw3e] {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    margin-bottom: 0.5rem;
}

.modal-message[b-e0kci9hw3e] {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.modal-buttons[b-e0kci9hw3e] {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-modal-cancel[b-e0kci9hw3e] {
    flex: 1;
    background: white;
    border: 1.5px solid #d9534f;
    color: #d9534f;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-modal-cancel:hover[b-e0kci9hw3e] {
    background: #fff5f5;
}

.btn-modal-delete[b-e0kci9hw3e] {
    flex: 1;
    background: #8B0000;
    border: none;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 0;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-modal-delete:hover[b-e0kci9hw3e] {
    background: #730000;
}

/* Success Toast */
.success-toast[b-e0kci9hw3e] {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f2fbf5;
    border: 1px solid #c8e6c9;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border-radius: 12px;
    padding: 12px 20px 12px 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    z-index: 1100;
    animation: toastSlideDown-b-e0kci9hw3e 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes toastSlideDown-b-e0kci9hw3e {
    from { transform: translate(-50%, -40px); opacity: 0; }
    to { transform: translate(-50%, 0); opacity: 1; }
}

.toast-icon[b-e0kci9hw3e] {
    font-size: 1.4rem;
    color: #2e7d32;
    margin-top: 2px;
}

.toast-content h4[b-e0kci9hw3e] {
    margin: 0 0 2px 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: #2e7d32;
}

.toast-content p[b-e0kci9hw3e] {
    margin: 0;
    font-size: 0.85rem;
    color: #4caf50;
}

.toast-close[b-e0kci9hw3e] {
    background: transparent;
    border: none;
    font-size: 1.2rem;
    color: #81c784;
    cursor: pointer;
    margin-left: 10px;
}

.toast-close:hover[b-e0kci9hw3e] {
    color: #2e7d32;
}
/* /Components/Pages/EditMedicine.razor.rz.scp.css */
/* Edit Page Specific Layout */
.edit-container[b-o46dz978zf] {
    width: 100%;
    padding-top: 1rem;
    padding-bottom: 2rem;
    color: var(--text-primary);
}

/* Breadcrumbs style */
.breadcrumbs[b-o46dz978zf] {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.breadcrumbs span[b-o46dz978zf] {
    margin: 0 0.5rem;
    color: #ccc;
}

/* Header Row layout */
.edit-header-row[b-o46dz978zf] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
    width: 100%;
}

.edit-title[b-o46dz978zf] {
    flex: 1;
}

.edit-title h1[b-o46dz978zf] {
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    margin: 0;
    line-height: 1.2;
}

.edit-title p[b-o46dz978zf] {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0.3rem 0 0 0;
}

/* Baby profile badge */
.baby-profile-badge[b-o46dz978zf] {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    background-color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(87, 2, 7, 0.05);
    white-space: nowrap;
    flex-shrink: 0;
}

.baby-avatar-img[b-o46dz978zf] {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f5a623;
}

.baby-badge-info h4[b-o46dz978zf] {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    margin: 0;
}

.baby-badge-info p[b-o46dz978zf] {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Back navigation */
.back-navigation[b-o46dz978zf] {
    margin-bottom: 1.5rem;
}

.back-link[b-o46dz978zf] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-burgundy);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
}

.back-link:hover[b-o46dz978zf] {
    color: #f5a623;
}

/* Two column layout */
.edit-content-grid[b-o46dz978zf] {
    display: grid;
    grid-template-columns: 7fr 3.5fr;
    gap: 1.5rem;
    width: 100%;
}

@media (max-width: 992px) {
    .edit-content-grid[b-o46dz978zf] {
        grid-template-columns: 1fr;
    }
}

/* Form panel card */
.edit-form-card[b-o46dz978zf] {
    background-color: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(87, 2, 7, 0.04);
}

.card-section-title[b-o46dz978zf] {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.card-section-title i[b-o46dz978zf] {
    color: #f5a623;
    font-size: 1.2rem;
}

/* Form fields layout */
.form-row[b-o46dz978zf] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.form-group[b-o46dz978zf] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label[b-o46dz978zf] {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Custom premium inputs */
.input-wrapper[b-o46dz978zf] {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i[b-o46dz978zf] {
    position: absolute;
    left: 1rem;
    color: #f5a623;
    font-size: 1.1rem;
    pointer-events: none;
}

.input-custom[b-o46dz978zf] {
    width: 100%;
    padding: 0.85rem 1rem 0.85rem 2.5rem;
    border-radius: 12px;
    border: 1px solid #eee3d8;
    background-color: #faf5f0;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.input-custom[type="date"][b-o46dz978zf], .input-custom[type="time"][b-o46dz978zf] {
    position: relative;
}

.input-custom:focus[b-o46dz978zf] {
    border-color: var(--primary-burgundy);
    box-shadow: 0 0 0 3px rgba(87, 2, 7, 0.05);
}

.select-arrow[b-o46dz978zf] {
    position: absolute;
    right: 1rem;
    color: var(--text-secondary);
    pointer-events: none;
}

/* Duration adjusters row */
.adjusters-row[b-o46dz978zf] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.adjuster-card[b-o46dz978zf] {
    background-color: #faf5f0;
    border: 1px solid #eee3d8;
    border-radius: 16px;
    padding: 1.25rem;
    text-align: center;
}

.adjuster-card h5[b-o46dz978zf] {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    margin-bottom: 0.25rem;
}

.adjuster-card p[b-o46dz978zf] {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.counter-control[b-o46dz978zf] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.btn-counter[b-o46dz978zf] {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #e0d5cb;
    background-color: white;
    color: #f5a623;
    font-size: 1.2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-counter:hover[b-o46dz978zf] {
    background-color: #f5a623;
    color: white;
    border-color: #f5a623;
}

.counter-value[b-o46dz978zf] {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    min-width: 40px;
}

.counter-unit[b-o46dz978zf] {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-left: 0.25rem;
}

/* Calculated read-only row */
.read-only-display[b-o46dz978zf] {
    background-color: #f2eae1;
    border-radius: 12px;
    padding: 0.85rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
}

.read-only-display i[b-o46dz978zf] {
    color: #f5a623;
    font-size: 1.2rem;
}

.read-only-display span[b-o46dz978zf] {
    font-weight: 700;
    font-size: 1rem;
}

.read-only-label[b-o46dz978zf] {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
    display: block;
    font-weight: 600;
}

/* Notes Textarea styling */
.notes-textarea-container[b-o46dz978zf] {
    position: relative;
    margin-bottom: 2rem;
}

.notes-textarea[b-o46dz978zf] {
    width: 100%;
    min-height: 100px;
    padding: 1rem 1rem 1rem 2.5rem;
    border-radius: 12px;
    border: 1px solid #eee3d8;
    background-color: #faf5f0;
    color: var(--text-primary);
    font-size: 0.95rem;
    outline: none;
    resize: none;
    transition: border-color 0.2s;
}

.notes-textarea:focus[b-o46dz978zf] {
    border-color: var(--primary-burgundy);
}

.notes-icon-left[b-o46dz978zf] {
    position: absolute;
    left: 1rem;
    top: 1.1rem;
    color: #f5a623;
    font-size: 1.1rem;
    pointer-events: none;
}

/* Action button bar styling */
.action-buttons-bar[b-o46dz978zf] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
}

.buttons-left[b-o46dz978zf] {
    display: flex;
    gap: 1rem;
}

.btn-save-changes[b-o46dz978zf] {
    background-color: #f5a623;
    color: white;
    border: none;
    border-radius: 12px;
    padding: 0.85rem 2.25rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.1s;
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.25);
}

.btn-save-changes:hover[b-o46dz978zf] {
    opacity: 0.92;
}

.btn-save-changes:active[b-o46dz978zf] {
    transform: scale(0.98);
}

.btn-cancel[b-o46dz978zf] {
    background-color: white;
    color: var(--primary-burgundy);
    border: 1.5px solid #e2d7cc;
    border-radius: 12px;
    padding: 0.85rem 2rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
    text-decoration: none;
}

.btn-cancel:hover[b-o46dz978zf] {
    background-color: #faf5f0;
}

.btn-delete-entry[b-o46dz978zf] {
    background: transparent;
    border: none;
    color: #d9534f;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background-color 0.2s;
}

.btn-delete-entry:hover[b-o46dz978zf] {
    background-color: rgba(217, 83, 79, 0.08);
}

/* Right Sidebar: Summary */
.summary-sidebar-card[b-o46dz978zf] {
    background-color: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(87, 2, 7, 0.04);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: fit-content;
}

.summary-title[b-o46dz978zf] {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0;
}

.summary-title-icon-wrapper[b-o46dz978zf] {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #faefe6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.summary-title-icon-wrapper i[b-o46dz978zf] {
    color: var(--primary-burgundy);
}

.summary-list[b-o46dz978zf] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.summary-item[b-o46dz978zf] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #f3ede6;
}

.summary-item-label[b-o46dz978zf] {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.summary-item-label i[b-o46dz978zf] {
    color: #f5a623;
    font-size: 1rem;
}

.summary-item-value[b-o46dz978zf] {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* Warning alert box */
.warning-alert-box[b-o46dz978zf] {
    background-color: #fff8ee;
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid #f7e7d3;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.warning-alert-box i[b-o46dz978zf] {
    color: #f5a623;
    font-size: 1.25rem;
    margin-top: 0.1rem;
}

.warning-alert-box p[b-o46dz978zf] {
    font-size: 0.8rem;
    color: #8a6d3b;
    margin: 0;
    line-height: 1.4;
}

/* Loading state card styling */
.loading-card-container[b-o46dz978zf] {
    background-color: white;
    border-radius: 20px;
    padding: 4rem 2rem;
    box-shadow: 0 4px 20px rgba(87, 2, 7, 0.04);
    text-align: center;
    width: 100%;
    margin-top: 1rem;
}

/* Mobile Responsive Enhancements */
@media (max-width: 768px) {
    .edit-header-row[b-o46dz978zf] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.85rem;
    }

    .edit-title h1[b-o46dz978zf] {
        font-size: 1.4rem;
        word-break: break-word;
    }

    .baby-profile-badge[b-o46dz978zf] {
        align-self: flex-start;
    }

    .form-row[b-o46dz978zf] {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }

    .adjusters-row[b-o46dz978zf] {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }

    .calculated-row[b-o46dz978zf] {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }

    .edit-form-card[b-o46dz978zf] {
        padding: 1.25rem 1rem;
        border-radius: 16px;
    }

    .summary-sidebar-card[b-o46dz978zf] {
        padding: 1.25rem 1rem;
        border-radius: 16px;
    }

    .action-buttons-bar[b-o46dz978zf] {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .buttons-left[b-o46dz978zf] {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .btn-save-changes[b-o46dz978zf], .btn-cancel[b-o46dz978zf] {
        width: 100%;
        text-align: center;
    }

    .btn-delete-entry[b-o46dz978zf] {
        justify-content: center;
        width: 100%;
    }
}

/* =============================================
   MODAL & TOAST STYLES
   ============================================= */

.modal-overlay[b-o46dz978zf] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    backdrop-filter: blur(2px);
    animation: fadeIn-b-o46dz978zf 0.2s ease-out;
}

@keyframes fadeIn-b-o46dz978zf {
    from { opacity: 0; }
    to { opacity: 1; }
}

.delete-modal[b-o46dz978zf], .loading-modal[b-o46dz978zf] {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    width: 90%;
    max-width: 400px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: slideUp-b-o46dz978zf 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes slideUp-b-o46dz978zf {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-close[b-o46dz978zf] {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
    transition: color 0.2s;
}

.modal-close:hover[b-o46dz978zf] {
    color: #333;
}

.modal-icon-container[b-o46dz978zf] {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.modal-icon-circle[b-o46dz978zf] {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #fff8eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #f5a623;
}

.modal-title[b-o46dz978zf] {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    margin-bottom: 0.5rem;
}

.modal-message[b-o46dz978zf] {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.modal-buttons[b-o46dz978zf] {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-modal-cancel[b-o46dz978zf] {
    flex: 1;
    background: white;
    border: 1.5px solid #d9534f;
    color: #d9534f;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-modal-cancel:hover[b-o46dz978zf] {
    background: #fff5f5;
}

.btn-modal-delete[b-o46dz978zf] {
    flex: 1;
    background: #8B0000;
    border: none;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 0;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-modal-delete:hover[b-o46dz978zf] {
    background: #730000;
}

/* Success Toast */
.success-toast[b-o46dz978zf] {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f2fbf5;
    border: 1px solid #c8e6c9;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border-radius: 12px;
    padding: 12px 20px 12px 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    z-index: 1100;
    animation: toastSlideDown-b-o46dz978zf 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes toastSlideDown-b-o46dz978zf {
    from { transform: translate(-50%, -40px); opacity: 0; }
    to { transform: translate(-50%, 0); opacity: 1; }
}

.toast-icon[b-o46dz978zf] {
    font-size: 1.4rem;
    color: #2e7d32;
    margin-top: 2px;
}

.toast-content h4[b-o46dz978zf] {
    margin: 0 0 2px 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: #2e7d32;
}

.toast-content p[b-o46dz978zf] {
    margin: 0;
    font-size: 0.85rem;
    color: #4caf50;
}

.toast-close[b-o46dz978zf] {
    background: transparent;
    border: none;
    font-size: 1.2rem;
    color: #81c784;
    cursor: pointer;
    margin-left: 10px;
}

.toast-close:hover[b-o46dz978zf] {
    color: #2e7d32;
}
/* /Components/Pages/EditPotty.razor.rz.scp.css */
/* Edit Page Specific Layout */
.edit-container[b-erxmmbzjws] {
    width: 100%;
    padding-top: 1rem;
    padding-bottom: 2rem;
    color: var(--text-primary);
}

/* Breadcrumbs style */
.breadcrumbs[b-erxmmbzjws] {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.breadcrumbs span[b-erxmmbzjws] {
    margin: 0 0.5rem;
    color: #ccc;
}

/* Header Row layout */
.edit-header-row[b-erxmmbzjws] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
    width: 100%;
}

.edit-title[b-erxmmbzjws] {
    flex: 1;
}

.edit-title h1[b-erxmmbzjws] {
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    margin: 0;
    line-height: 1.2;
}

.edit-title p[b-erxmmbzjws] {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0.3rem 0 0 0;
}

/* Baby profile badge */
.baby-profile-badge[b-erxmmbzjws] {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    background-color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(87, 2, 7, 0.05);
    white-space: nowrap;
    flex-shrink: 0;
}

.baby-avatar-img[b-erxmmbzjws] {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f5a623;
}

.baby-badge-info h4[b-erxmmbzjws] {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    margin: 0;
}

.baby-badge-info p[b-erxmmbzjws] {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Back navigation */
.back-navigation[b-erxmmbzjws] {
    margin-bottom: 1.5rem;
}

.back-link[b-erxmmbzjws] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-burgundy);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
}

.back-link:hover[b-erxmmbzjws] {
    color: #f5a623;
}

/* Two column layout */
.edit-content-grid[b-erxmmbzjws] {
    display: grid;
    grid-template-columns: 7fr 3.5fr;
    gap: 1.5rem;
    width: 100%;
}

@media (max-width: 992px) {
    .edit-content-grid[b-erxmmbzjws] {
        grid-template-columns: 1fr;
    }
}

/* Form panel card */
.edit-form-card[b-erxmmbzjws] {
    background-color: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(87, 2, 7, 0.04);
}

.card-section-title[b-erxmmbzjws] {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.card-section-title i[b-erxmmbzjws] {
    color: #f5a623;
    font-size: 1.2rem;
}

/* Form fields layout */
.form-row[b-erxmmbzjws] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.form-group[b-erxmmbzjws] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label[b-erxmmbzjws] {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Custom premium inputs */
.input-wrapper[b-erxmmbzjws] {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i[b-erxmmbzjws] {
    position: absolute;
    left: 1rem;
    color: #f5a623;
    font-size: 1.1rem;
    pointer-events: none;
}

.input-custom[b-erxmmbzjws] {
    width: 100%;
    padding: 0.85rem 1rem 0.85rem 2.5rem;
    border-radius: 12px;
    border: 1px solid #eee3d8;
    background-color: #faf5f0;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.input-custom[type="date"][b-erxmmbzjws], .input-custom[type="time"][b-erxmmbzjws] {
    position: relative;
}

.input-custom:focus[b-erxmmbzjws] {
    border-color: var(--primary-burgundy);
    box-shadow: 0 0 0 3px rgba(87, 2, 7, 0.05);
}

.select-arrow[b-erxmmbzjws] {
    position: absolute;
    right: 1rem;
    color: var(--text-secondary);
    pointer-events: none;
}

/* Duration adjusters row */
.adjusters-row[b-erxmmbzjws] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.adjuster-card[b-erxmmbzjws] {
    background-color: #faf5f0;
    border: 1px solid #eee3d8;
    border-radius: 16px;
    padding: 1.25rem;
    text-align: center;
}

.adjuster-card h5[b-erxmmbzjws] {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    margin-bottom: 0.25rem;
}

.adjuster-card p[b-erxmmbzjws] {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.counter-control[b-erxmmbzjws] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.btn-counter[b-erxmmbzjws] {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #e0d5cb;
    background-color: white;
    color: #f5a623;
    font-size: 1.2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-counter:hover[b-erxmmbzjws] {
    background-color: #f5a623;
    color: white;
    border-color: #f5a623;
}

.counter-value[b-erxmmbzjws] {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    min-width: 40px;
}

.counter-unit[b-erxmmbzjws] {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-left: 0.25rem;
}

/* Calculated read-only row */
.read-only-display[b-erxmmbzjws] {
    background-color: #f2eae1;
    border-radius: 12px;
    padding: 0.85rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
}

.read-only-display i[b-erxmmbzjws] {
    color: #f5a623;
    font-size: 1.2rem;
}

.read-only-display span[b-erxmmbzjws] {
    font-weight: 700;
    font-size: 1rem;
}

.read-only-label[b-erxmmbzjws] {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
    display: block;
    font-weight: 600;
}

/* Notes Textarea styling */
.notes-textarea-container[b-erxmmbzjws] {
    position: relative;
    margin-bottom: 2rem;
}

.notes-textarea[b-erxmmbzjws] {
    width: 100%;
    min-height: 100px;
    padding: 1rem 1rem 1rem 2.5rem;
    border-radius: 12px;
    border: 1px solid #eee3d8;
    background-color: #faf5f0;
    color: var(--text-primary);
    font-size: 0.95rem;
    outline: none;
    resize: none;
    transition: border-color 0.2s;
}

.notes-textarea:focus[b-erxmmbzjws] {
    border-color: var(--primary-burgundy);
}

.notes-icon-left[b-erxmmbzjws] {
    position: absolute;
    left: 1rem;
    top: 1.1rem;
    color: #f5a623;
    font-size: 1.1rem;
    pointer-events: none;
}

/* Action button bar styling */
.action-buttons-bar[b-erxmmbzjws] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
}

.buttons-left[b-erxmmbzjws] {
    display: flex;
    gap: 1rem;
}

.btn-save-changes[b-erxmmbzjws] {
    background-color: #f5a623;
    color: white;
    border: none;
    border-radius: 12px;
    padding: 0.85rem 2.25rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.1s;
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.25);
}

.btn-save-changes:hover[b-erxmmbzjws] {
    opacity: 0.92;
}

.btn-save-changes:active[b-erxmmbzjws] {
    transform: scale(0.98);
}

.btn-cancel[b-erxmmbzjws] {
    background-color: white;
    color: var(--primary-burgundy);
    border: 1.5px solid #e2d7cc;
    border-radius: 12px;
    padding: 0.85rem 2rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
    text-decoration: none;
}

.btn-cancel:hover[b-erxmmbzjws] {
    background-color: #faf5f0;
}

.btn-delete-entry[b-erxmmbzjws] {
    background: transparent;
    border: none;
    color: #d9534f;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background-color 0.2s;
}

.btn-delete-entry:hover[b-erxmmbzjws] {
    background-color: rgba(217, 83, 79, 0.08);
}

/* Right Sidebar: Summary */
.summary-sidebar-card[b-erxmmbzjws] {
    background-color: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(87, 2, 7, 0.04);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: fit-content;
}

.summary-title[b-erxmmbzjws] {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0;
}

.summary-title-icon-wrapper[b-erxmmbzjws] {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #faefe6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.summary-title-icon-wrapper i[b-erxmmbzjws] {
    color: var(--primary-burgundy);
}

.summary-list[b-erxmmbzjws] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.summary-item[b-erxmmbzjws] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #f3ede6;
}

.summary-item-label[b-erxmmbzjws] {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.summary-item-label i[b-erxmmbzjws] {
    color: #f5a623;
    font-size: 1rem;
}

.summary-item-value[b-erxmmbzjws] {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* Warning alert box */
.warning-alert-box[b-erxmmbzjws] {
    background-color: #fff8ee;
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid #f7e7d3;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.warning-alert-box i[b-erxmmbzjws] {
    color: #f5a623;
    font-size: 1.25rem;
    margin-top: 0.1rem;
}

.warning-alert-box p[b-erxmmbzjws] {
    font-size: 0.8rem;
    color: #8a6d3b;
    margin: 0;
    line-height: 1.4;
}

/* Loading state card styling */
.loading-card-container[b-erxmmbzjws] {
    background-color: white;
    border-radius: 20px;
    padding: 4rem 2rem;
    box-shadow: 0 4px 20px rgba(87, 2, 7, 0.04);
    text-align: center;
    width: 100%;
    margin-top: 1rem;
}

/* Mobile Responsive Enhancements */
@media (max-width: 768px) {
    .edit-header-row[b-erxmmbzjws] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.85rem;
    }

    .edit-title h1[b-erxmmbzjws] {
        font-size: 1.4rem;
        word-break: break-word;
    }

    .baby-profile-badge[b-erxmmbzjws] {
        align-self: flex-start;
    }

    .form-row[b-erxmmbzjws] {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }

    .adjusters-row[b-erxmmbzjws] {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }

    .calculated-row[b-erxmmbzjws] {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }

    .edit-form-card[b-erxmmbzjws] {
        padding: 1.25rem 1rem;
        border-radius: 16px;
    }

    .summary-sidebar-card[b-erxmmbzjws] {
        padding: 1.25rem 1rem;
        border-radius: 16px;
    }

    .action-buttons-bar[b-erxmmbzjws] {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .buttons-left[b-erxmmbzjws] {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .btn-save-changes[b-erxmmbzjws], .btn-cancel[b-erxmmbzjws] {
        width: 100%;
        text-align: center;
    }

    .btn-delete-entry[b-erxmmbzjws] {
        justify-content: center;
        width: 100%;
    }
}

/* Potty Card & Grid matching Diaper main page */
.type-card[b-erxmmbzjws] {
    background-color: white;
    border: 1.5px solid transparent;
    border-radius: 12px;
    padding: 0.8rem 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

.type-card.active[b-erxmmbzjws] {
    border-color: var(--accent-gold) !important;
}

.check-badge[b-erxmmbzjws] {
    position: absolute;
    top: -6px;
    right: -6px;
    background-color: var(--accent-gold);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.plus-badge[b-erxmmbzjws] {
    position: absolute;
    top: 4px;
    right: 8px;
    color: #f5a623;
    font-weight: bold;
    font-size: 1rem;
}

.duration-box-custom[b-erxmmbzjws] {
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.duration-box-custom:hover[b-erxmmbzjws] {
    border-color: rgba(255, 193, 7, 0.4) !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.04) !important;
}

.duration-btn-custom[b-erxmmbzjws] {
    transition: background-color 0.2s ease;
}

.duration-btn-custom:hover[b-erxmmbzjws] {
    background-color: #fff9e6 !important;
}

.notes-input-container[b-erxmmbzjws] {
    display: flex;
    align-items: center;
    background-color: white;
    border: 1px solid rgba(87, 2, 7, 0.08);
    border-radius: 10px;
    padding: 0.4rem 0.6rem;
}

.notes-input[b-erxmmbzjws] {
    border: none;
    outline: none;
    width: 100%;
    font-size: 0.85rem;
    background: transparent;
}

/* =============================================
   MODAL & TOAST STYLES
   ============================================= */

.modal-overlay[b-erxmmbzjws] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    backdrop-filter: blur(2px);
    animation: fadeIn-b-erxmmbzjws 0.2s ease-out;
}

@keyframes fadeIn-b-erxmmbzjws {
    from { opacity: 0; }
    to { opacity: 1; }
}

.delete-modal[b-erxmmbzjws], .loading-modal[b-erxmmbzjws] {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    width: 90%;
    max-width: 400px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: slideUp-b-erxmmbzjws 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes slideUp-b-erxmmbzjws {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-close[b-erxmmbzjws] {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
    transition: color 0.2s;
}

.modal-close:hover[b-erxmmbzjws] {
    color: #333;
}

.modal-icon-container[b-erxmmbzjws] {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.modal-icon-circle[b-erxmmbzjws] {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #fff8eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #f5a623;
}

.modal-title[b-erxmmbzjws] {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    margin-bottom: 0.5rem;
}

.modal-message[b-erxmmbzjws] {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.modal-buttons[b-erxmmbzjws] {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-modal-cancel[b-erxmmbzjws] {
    flex: 1;
    background: white;
    border: 1.5px solid #d9534f;
    color: #d9534f;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-modal-cancel:hover[b-erxmmbzjws] {
    background: #fff5f5;
}

.btn-modal-delete[b-erxmmbzjws] {
    flex: 1;
    background: #8B0000;
    border: none;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 0;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-modal-delete:hover[b-erxmmbzjws] {
    background: #730000;
}

/* Success Toast */
.success-toast[b-erxmmbzjws] {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f2fbf5;
    border: 1px solid #c8e6c9;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border-radius: 12px;
    padding: 12px 20px 12px 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    z-index: 1100;
    animation: toastSlideDown-b-erxmmbzjws 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes toastSlideDown-b-erxmmbzjws {
    from { transform: translate(-50%, -40px); opacity: 0; }
    to { transform: translate(-50%, 0); opacity: 1; }
}

.toast-icon[b-erxmmbzjws] {
    font-size: 1.4rem;
    color: #2e7d32;
    margin-top: 2px;
}

.toast-content h4[b-erxmmbzjws] {
    margin: 0 0 2px 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: #2e7d32;
}

.toast-content p[b-erxmmbzjws] {
    margin: 0;
    font-size: 0.85rem;
    color: #4caf50;
}

.toast-close[b-erxmmbzjws] {
    background: transparent;
    border: none;
    font-size: 1.2rem;
    color: #81c784;
    cursor: pointer;
    margin-left: 10px;
}

.toast-close:hover[b-erxmmbzjws] {
    color: #2e7d32;
}
/* /Components/Pages/EditSleep.razor.rz.scp.css */
/* Edit Page Specific Layout */
.edit-container[b-mzlpud2jg0] {
    width: 100%;
    padding-top: 1rem;
    padding-bottom: 2rem;
    color: var(--text-primary);
}

/* Breadcrumbs style */
.breadcrumbs[b-mzlpud2jg0] {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.breadcrumbs span[b-mzlpud2jg0] {
    margin: 0 0.5rem;
    color: #ccc;
}

/* Header Row layout */
.edit-header-row[b-mzlpud2jg0] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
    width: 100%;
}

.edit-title[b-mzlpud2jg0] {
    flex: 1;
}

.edit-title h1[b-mzlpud2jg0] {
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    margin: 0;
    line-height: 1.2;
}

.edit-title p[b-mzlpud2jg0] {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0.3rem 0 0 0;
}

/* Baby profile badge */
.baby-profile-badge[b-mzlpud2jg0] {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    background-color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(87, 2, 7, 0.05);
    white-space: nowrap;
    flex-shrink: 0;
}

.baby-avatar-img[b-mzlpud2jg0] {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f5a623;
}

.baby-badge-info h4[b-mzlpud2jg0] {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    margin: 0;
}

.baby-badge-info p[b-mzlpud2jg0] {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Back navigation */
.back-navigation[b-mzlpud2jg0] {
    margin-bottom: 1.5rem;
}

.back-link[b-mzlpud2jg0] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-burgundy);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
}

.back-link:hover[b-mzlpud2jg0] {
    color: #f5a623;
}

/* Two column layout */
.edit-content-grid[b-mzlpud2jg0] {
    display: grid;
    grid-template-columns: 7fr 3.5fr;
    gap: 1.5rem;
    width: 100%;
}

@media (max-width: 992px) {
    .edit-content-grid[b-mzlpud2jg0] {
        grid-template-columns: 1fr;
    }
}

/* Form panel card */
.edit-form-card[b-mzlpud2jg0] {
    background-color: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(87, 2, 7, 0.04);
}

.card-section-title[b-mzlpud2jg0] {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.card-section-title i[b-mzlpud2jg0] {
    color: #f5a623;
    font-size: 1.2rem;
}

/* Form fields layout */
.form-row[b-mzlpud2jg0] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.form-group[b-mzlpud2jg0] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label[b-mzlpud2jg0] {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Custom premium inputs */
.input-wrapper[b-mzlpud2jg0] {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i[b-mzlpud2jg0] {
    position: absolute;
    left: 1rem;
    color: #f5a623;
    font-size: 1.1rem;
    pointer-events: none;
}

.input-custom[b-mzlpud2jg0] {
    width: 100%;
    padding: 0.85rem 1rem 0.85rem 2.5rem;
    border-radius: 12px;
    border: 1px solid #eee3d8;
    background-color: #faf5f0;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.input-custom[type="date"][b-mzlpud2jg0], .input-custom[type="time"][b-mzlpud2jg0] {
    position: relative;
}

.input-custom:focus[b-mzlpud2jg0] {
    border-color: var(--primary-burgundy);
    box-shadow: 0 0 0 3px rgba(87, 2, 7, 0.05);
}

.select-arrow[b-mzlpud2jg0] {
    position: absolute;
    right: 1rem;
    color: var(--text-secondary);
    pointer-events: none;
}

/* Duration adjusters row */
.adjusters-row[b-mzlpud2jg0] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.adjuster-card[b-mzlpud2jg0] {
    background-color: #faf5f0;
    border: 1px solid #eee3d8;
    border-radius: 16px;
    padding: 1.25rem;
    text-align: center;
}

.adjuster-card h5[b-mzlpud2jg0] {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    margin-bottom: 0.25rem;
}

.adjuster-card p[b-mzlpud2jg0] {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.counter-control[b-mzlpud2jg0] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.btn-counter[b-mzlpud2jg0] {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #e0d5cb;
    background-color: white;
    color: #f5a623;
    font-size: 1.2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-counter:hover[b-mzlpud2jg0] {
    background-color: #f5a623;
    color: white;
    border-color: #f5a623;
}

.counter-value[b-mzlpud2jg0] {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    min-width: 40px;
}

.counter-unit[b-mzlpud2jg0] {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-left: 0.25rem;
}

/* Calculated read-only row */
.read-only-display[b-mzlpud2jg0] {
    width: 100%;
    padding: 0.85rem 1rem 0.85rem 2.5rem;
    border-radius: 12px;
    border: 1px solid #eee3d8;
    background-color: #faf5f0;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.read-only-display span[b-mzlpud2jg0] {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
}

/* Notes Textarea styling */
.notes-textarea-container[b-mzlpud2jg0] {
    position: relative;
    margin-bottom: 2rem;
}

.notes-textarea[b-mzlpud2jg0] {
    width: 100%;
    min-height: 100px;
    padding: 1rem 1rem 1rem 2.5rem;
    border-radius: 12px;
    border: 1px solid #eee3d8;
    background-color: #faf5f0;
    color: var(--text-primary);
    font-size: 0.95rem;
    outline: none;
    resize: none;
    transition: border-color 0.2s;
}

.notes-textarea:focus[b-mzlpud2jg0] {
    border-color: var(--primary-burgundy);
}

.notes-icon-left[b-mzlpud2jg0] {
    position: absolute;
    left: 1rem;
    top: 1.1rem;
    color: #f5a623;
    font-size: 1.1rem;
    pointer-events: none;
}

/* Action button bar styling */
.action-buttons-bar[b-mzlpud2jg0] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
}

.buttons-left[b-mzlpud2jg0] {
    display: flex;
    gap: 1rem;
}

.btn-save-changes[b-mzlpud2jg0] {
    background-color: #f5a623;
    color: white;
    border: none;
    border-radius: 12px;
    padding: 0.85rem 2.25rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.1s;
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.25);
}

.btn-save-changes:hover[b-mzlpud2jg0] {
    opacity: 0.92;
}

.btn-save-changes:active[b-mzlpud2jg0] {
    transform: scale(0.98);
}

.btn-cancel[b-mzlpud2jg0] {
    background-color: white;
    color: var(--primary-burgundy);
    border: 1.5px solid #e2d7cc;
    border-radius: 12px;
    padding: 0.85rem 2rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
    text-decoration: none;
}

.btn-cancel:hover[b-mzlpud2jg0] {
    background-color: #faf5f0;
}

.btn-delete-entry[b-mzlpud2jg0] {
    background: transparent;
    border: none;
    color: #d9534f;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background-color 0.2s;
}

.btn-delete-entry:hover[b-mzlpud2jg0] {
    background-color: rgba(217, 83, 79, 0.08);
}

/* Right Sidebar: Summary */
.summary-sidebar-card[b-mzlpud2jg0] {
    background-color: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(87, 2, 7, 0.04);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: fit-content;
}

.summary-title[b-mzlpud2jg0] {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0;
}

.summary-title-icon-wrapper[b-mzlpud2jg0] {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #faefe6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.summary-title-icon-wrapper i[b-mzlpud2jg0] {
    color: var(--primary-burgundy);
}

.summary-list[b-mzlpud2jg0] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.summary-item[b-mzlpud2jg0] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #f3ede6;
}

.summary-item-label[b-mzlpud2jg0] {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.summary-item-label i[b-mzlpud2jg0] {
    color: #f5a623;
    font-size: 1rem;
}

.summary-item-value[b-mzlpud2jg0] {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* Warning alert box */
.warning-alert-box[b-mzlpud2jg0] {
    background-color: #fff8ee;
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid #f7e7d3;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.warning-alert-box i[b-mzlpud2jg0] {
    color: #f5a623;
    font-size: 1.25rem;
    margin-top: 0.1rem;
}

.warning-alert-box p[b-mzlpud2jg0] {
    font-size: 0.8rem;
    color: #8a6d3b;
    margin: 0;
    line-height: 1.4;
}

/* Loading state card styling */
.loading-card-container[b-mzlpud2jg0] {
    background-color: white;
    border-radius: 20px;
    padding: 4rem 2rem;
    box-shadow: 0 4px 20px rgba(87, 2, 7, 0.04);
    text-align: center;
    width: 100%;
    margin-top: 1rem;
}

/* Mobile Responsive Enhancements */
@media (max-width: 768px) {
    .edit-header-row[b-mzlpud2jg0] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.85rem;
    }

    .edit-title h1[b-mzlpud2jg0] {
        font-size: 1.4rem;
        word-break: break-word;
    }

    .baby-profile-badge[b-mzlpud2jg0] {
        align-self: flex-start;
    }

    .form-row[b-mzlpud2jg0] {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 0.35rem !important;
        width: 100% !important;
    }

    .input-custom[b-mzlpud2jg0] {
        padding: 0.5rem 0.3rem 0.5rem 1.8rem !important;
        font-size: 0.78rem !important;
    }

    .input-wrapper i[b-mzlpud2jg0] {
        left: 0.5rem !important;
        font-size: 0.85rem !important;
    }

    .read-only-display[b-mzlpud2jg0] {
        padding: 0.5rem 0.3rem 0.5rem 1.8rem !important;
        font-size: 0.78rem !important;
        height: 38px !important;
    }

    .read-only-display span[b-mzlpud2jg0] {
        font-size: 0.78rem !important;
        font-weight: 600 !important;
    }

    .adjusters-row[b-mzlpud2jg0] {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }

    .calculated-row[b-mzlpud2jg0] {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }

    .edit-form-card[b-mzlpud2jg0] {
        padding: 1.25rem 1rem;
        border-radius: 16px;
    }

    .summary-sidebar-card[b-mzlpud2jg0] {
        padding: 1.25rem 1rem;
        border-radius: 16px;
    }

    .action-buttons-bar[b-mzlpud2jg0] {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .buttons-left[b-mzlpud2jg0] {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .btn-save-changes[b-mzlpud2jg0], .btn-cancel[b-mzlpud2jg0] {
        width: 100%;
        text-align: center;
    }

    .btn-delete-entry[b-mzlpud2jg0] {
        justify-content: center;
        width: 100%;
    }
}

/* =============================================
   MODAL & TOAST STYLES
   ============================================= */

.modal-overlay[b-mzlpud2jg0] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    backdrop-filter: blur(2px);
    animation: fadeIn-b-mzlpud2jg0 0.2s ease-out;
}

@keyframes fadeIn-b-mzlpud2jg0 {
    from { opacity: 0; }
    to { opacity: 1; }
}

.delete-modal[b-mzlpud2jg0], .loading-modal[b-mzlpud2jg0] {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    width: 90%;
    max-width: 400px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: slideUp-b-mzlpud2jg0 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes slideUp-b-mzlpud2jg0 {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-close[b-mzlpud2jg0] {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
    transition: color 0.2s;
}

.modal-close:hover[b-mzlpud2jg0] {
    color: #333;
}

.modal-icon-container[b-mzlpud2jg0] {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.modal-icon-circle[b-mzlpud2jg0] {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #fff8eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #f5a623;
}

.modal-title[b-mzlpud2jg0] {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    margin-bottom: 0.5rem;
}

.modal-message[b-mzlpud2jg0] {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.modal-buttons[b-mzlpud2jg0] {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-modal-cancel[b-mzlpud2jg0] {
    flex: 1;
    background: white;
    border: 1.5px solid #d9534f;
    color: #d9534f;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-modal-cancel:hover[b-mzlpud2jg0] {
    background: #fff5f5;
}

.btn-modal-delete[b-mzlpud2jg0] {
    flex: 1;
    background: #8B0000;
    border: none;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 0;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-modal-delete:hover[b-mzlpud2jg0] {
    background: #730000;
}

/* Success Toast */
.success-toast[b-mzlpud2jg0] {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f2fbf5;
    border: 1px solid #c8e6c9;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border-radius: 12px;
    padding: 12px 20px 12px 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    z-index: 1100;
    animation: toastSlideDown-b-mzlpud2jg0 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes toastSlideDown-b-mzlpud2jg0 {
    from { transform: translate(-50%, -40px); opacity: 0; }
    to { transform: translate(-50%, 0); opacity: 1; }
}

.toast-icon[b-mzlpud2jg0] {
    font-size: 1.4rem;
    color: #2e7d32;
    margin-top: 2px;
}

.toast-content h4[b-mzlpud2jg0] {
    margin: 0 0 2px 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: #2e7d32;
}

.toast-content p[b-mzlpud2jg0] {
    margin: 0;
    font-size: 0.85rem;
    color: #4caf50;
}

.toast-close[b-mzlpud2jg0] {
    background: transparent;
    border: none;
    font-size: 1.2rem;
    color: #81c784;
    cursor: pointer;
    margin-left: 10px;
}

.toast-close:hover[b-mzlpud2jg0] {
    color: #2e7d32;
}
/* /Components/Pages/EditSolids.razor.rz.scp.css */
/* Edit Page Specific Layout */
.edit-container[b-fvkn0u8kgg] {
    width: 100%;
    padding-top: 1rem;
    padding-bottom: 2rem;
    color: var(--text-primary);
}

/* Breadcrumbs style */
.breadcrumbs[b-fvkn0u8kgg] {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.breadcrumbs span[b-fvkn0u8kgg] {
    margin: 0 0.5rem;
    color: #ccc;
}

/* Header Row layout */
.edit-header-row[b-fvkn0u8kgg] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
    width: 100%;
}

.edit-title[b-fvkn0u8kgg] {
    flex: 1;
}

.edit-title h1[b-fvkn0u8kgg] {
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    margin: 0;
    line-height: 1.2;
}

.edit-title p[b-fvkn0u8kgg] {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0.3rem 0 0 0;
}

/* Baby profile badge */
.baby-profile-badge[b-fvkn0u8kgg] {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    background-color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(87, 2, 7, 0.05);
    white-space: nowrap;
    flex-shrink: 0;
}

.baby-avatar-img[b-fvkn0u8kgg] {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f5a623;
}

.baby-badge-info h4[b-fvkn0u8kgg] {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    margin: 0;
}

.baby-badge-info p[b-fvkn0u8kgg] {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Back navigation */
.back-navigation[b-fvkn0u8kgg] {
    margin-bottom: 1.5rem;
}

.back-link[b-fvkn0u8kgg] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-burgundy);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
}

.back-link:hover[b-fvkn0u8kgg] {
    color: #f5a623;
}

/* Two column layout */
.edit-content-grid[b-fvkn0u8kgg] {
    display: grid;
    grid-template-columns: 7fr 3.5fr;
    gap: 1.5rem;
    width: 100%;
}

@media (max-width: 992px) {
    .edit-content-grid[b-fvkn0u8kgg] {
        grid-template-columns: 1fr;
    }
}

/* Form panel card */
.edit-form-card[b-fvkn0u8kgg] {
    background-color: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(87, 2, 7, 0.04);
}

.card-section-title[b-fvkn0u8kgg] {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.card-section-title i[b-fvkn0u8kgg] {
    color: #f5a623;
    font-size: 1.2rem;
}

/* Form fields layout */
.form-row[b-fvkn0u8kgg] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.form-group[b-fvkn0u8kgg] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label[b-fvkn0u8kgg] {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Custom premium inputs */
.input-wrapper[b-fvkn0u8kgg] {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i[b-fvkn0u8kgg] {
    position: absolute;
    left: 1rem;
    color: #f5a623;
    font-size: 1.1rem;
    pointer-events: none;
}

.input-custom[b-fvkn0u8kgg] {
    width: 100%;
    padding: 0.85rem 1rem 0.85rem 2.5rem;
    border-radius: 12px;
    border: 1px solid #eee3d8;
    background-color: #faf5f0;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.input-custom[type="date"][b-fvkn0u8kgg], .input-custom[type="time"][b-fvkn0u8kgg] {
    position: relative;
}

.input-custom:focus[b-fvkn0u8kgg] {
    border-color: var(--primary-burgundy);
    box-shadow: 0 0 0 3px rgba(87, 2, 7, 0.05);
}

.select-arrow[b-fvkn0u8kgg] {
    position: absolute;
    right: 1rem;
    color: var(--text-secondary);
    pointer-events: none;
}

/* Duration adjusters row */
.adjusters-row[b-fvkn0u8kgg] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.adjuster-card[b-fvkn0u8kgg] {
    background-color: #faf5f0;
    border: 1px solid #eee3d8;
    border-radius: 16px;
    padding: 1.25rem;
    text-align: center;
}

.adjuster-card h5[b-fvkn0u8kgg] {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    margin-bottom: 0.25rem;
}

.adjuster-card p[b-fvkn0u8kgg] {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.counter-control[b-fvkn0u8kgg] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.btn-counter[b-fvkn0u8kgg] {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #e0d5cb;
    background-color: white;
    color: #f5a623;
    font-size: 1.2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-counter:hover[b-fvkn0u8kgg] {
    background-color: #f5a623;
    color: white;
    border-color: #f5a623;
}

.counter-value[b-fvkn0u8kgg] {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    min-width: 40px;
}

.counter-unit[b-fvkn0u8kgg] {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-left: 0.25rem;
}

/* Calculated read-only row */
.read-only-display[b-fvkn0u8kgg] {
    background-color: #f2eae1;
    border-radius: 12px;
    padding: 0.85rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
}

.read-only-display i[b-fvkn0u8kgg] {
    color: #f5a623;
    font-size: 1.2rem;
}

.read-only-display span[b-fvkn0u8kgg] {
    font-weight: 700;
    font-size: 1rem;
}

.read-only-label[b-fvkn0u8kgg] {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
    display: block;
    font-weight: 600;
}

/* Notes Textarea styling */
.notes-textarea-container[b-fvkn0u8kgg] {
    position: relative;
    margin-bottom: 2rem;
}

.notes-textarea[b-fvkn0u8kgg] {
    width: 100%;
    min-height: 100px;
    padding: 1rem 1rem 1rem 2.5rem;
    border-radius: 12px;
    border: 1px solid #eee3d8;
    background-color: #faf5f0;
    color: var(--text-primary);
    font-size: 0.95rem;
    outline: none;
    resize: none;
    transition: border-color 0.2s;
}

.notes-textarea:focus[b-fvkn0u8kgg] {
    border-color: var(--primary-burgundy);
}

.notes-icon-left[b-fvkn0u8kgg] {
    position: absolute;
    left: 1rem;
    top: 1.1rem;
    color: #f5a623;
    font-size: 1.1rem;
    pointer-events: none;
}

/* Action button bar styling */
.action-buttons-bar[b-fvkn0u8kgg] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
}

.buttons-left[b-fvkn0u8kgg] {
    display: flex;
    gap: 1rem;
}

.btn-save-changes[b-fvkn0u8kgg] {
    background-color: #f5a623;
    color: white;
    border: none;
    border-radius: 12px;
    padding: 0.85rem 2.25rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.1s;
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.25);
}

.btn-save-changes:hover[b-fvkn0u8kgg] {
    opacity: 0.92;
}

.btn-save-changes:active[b-fvkn0u8kgg] {
    transform: scale(0.98);
}

.btn-cancel[b-fvkn0u8kgg] {
    background-color: white;
    color: var(--primary-burgundy);
    border: 1.5px solid #e2d7cc;
    border-radius: 12px;
    padding: 0.85rem 2rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
    text-decoration: none;
}

.btn-cancel:hover[b-fvkn0u8kgg] {
    background-color: #faf5f0;
}

.btn-delete-entry[b-fvkn0u8kgg] {
    background: transparent;
    border: none;
    color: #d9534f;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background-color 0.2s;
}

.btn-delete-entry:hover[b-fvkn0u8kgg] {
    background-color: rgba(217, 83, 79, 0.08);
}

/* Right Sidebar: Summary */
.summary-sidebar-card[b-fvkn0u8kgg] {
    background-color: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(87, 2, 7, 0.04);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: fit-content;
}

.summary-title[b-fvkn0u8kgg] {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0;
}

.summary-title-icon-wrapper[b-fvkn0u8kgg] {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #faefe6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.summary-title-icon-wrapper i[b-fvkn0u8kgg] {
    color: var(--primary-burgundy);
}

.summary-list[b-fvkn0u8kgg] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.summary-item[b-fvkn0u8kgg] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #f3ede6;
}

.summary-item-label[b-fvkn0u8kgg] {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.summary-item-label i[b-fvkn0u8kgg] {
    color: #f5a623;
    font-size: 1rem;
}

.summary-item-value[b-fvkn0u8kgg] {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* Warning alert box */
.warning-alert-box[b-fvkn0u8kgg] {
    background-color: #fff8ee;
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid #f7e7d3;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.warning-alert-box i[b-fvkn0u8kgg] {
    color: #f5a623;
    font-size: 1.25rem;
    margin-top: 0.1rem;
}

.warning-alert-box p[b-fvkn0u8kgg] {
    font-size: 0.8rem;
    color: #8a6d3b;
    margin: 0;
    line-height: 1.4;
}

/* Loading state card styling */
.loading-card-container[b-fvkn0u8kgg] {
    background-color: white;
    border-radius: 20px;
    padding: 4rem 2rem;
    box-shadow: 0 4px 20px rgba(87, 2, 7, 0.04);
    text-align: center;
    width: 100%;
    margin-top: 1rem;
}

/* Mobile Responsive Enhancements */
@media (max-width: 768px) {
    .edit-header-row[b-fvkn0u8kgg] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.85rem;
    }

    .edit-title h1[b-fvkn0u8kgg] {
        font-size: 1.4rem;
        word-break: break-word;
    }

    .baby-profile-badge[b-fvkn0u8kgg] {
        align-self: flex-start;
    }

    .form-row[b-fvkn0u8kgg] {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 0.35rem !important;
        width: 100% !important;
    }

    .input-custom[b-fvkn0u8kgg] {
        padding: 0.5rem 0.3rem 0.5rem 1.8rem !important;
        font-size: 0.78rem !important;
    }

    .input-wrapper i[b-fvkn0u8kgg] {
        left: 0.5rem !important;
        font-size: 0.85rem !important;
    }

    .milk-type-grid[b-fvkn0u8kgg] {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 0.25rem !important;
        width: 100% !important;
    }

    .milk-card[b-fvkn0u8kgg] {
        padding: 0.4rem 0.15rem !important;
        text-align: center !important;
    }

    .milk-card p[b-fvkn0u8kgg] {
        font-size: 0.65rem !important;
        margin-top: 0.2rem !important;
        line-height: 1.1 !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    .milk-card i.milk-icon[b-fvkn0u8kgg] {
        font-size: 1.1rem !important;
    }

    .amount-adjuster[b-fvkn0u8kgg] {
        width: 100% !important;
        height: 44px !important;
        padding: 0.25rem 0.35rem !important;
        border-radius: 25px !important;
        box-sizing: border-box !important;
    }

    .amount-display[b-fvkn0u8kgg] {
        font-size: 1.2rem !important;
    }

    .adjust-btn[b-fvkn0u8kgg] {
        width: 28px !important;
        height: 28px !important;
        font-size: 1.1rem !important;
    }

    .unit-toggle[b-fvkn0u8kgg] {
        width: 100% !important;
        height: 44px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 3px !important;
        box-sizing: border-box !important;
    }

    .unit-btn[b-fvkn0u8kgg] {
        flex: 1 !important;
        padding: 4px 2px !important;
        font-size: 0.72rem !important;
    }

    .edit-form-card[b-fvkn0u8kgg] {
        padding: 0.85rem 0.6rem !important;
        border-radius: 14px;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .summary-sidebar-card[b-fvkn0u8kgg] {
        padding: 1.25rem 1rem;
        border-radius: 16px;
    }

    .action-buttons-bar[b-fvkn0u8kgg] {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.75rem !important;
        width: 100% !important;
    }

    .buttons-left[b-fvkn0u8kgg] {
        display: flex !important;
        flex-direction: row !important;
        width: 100% !important;
        gap: 0.5rem !important;
    }

    .btn-save-changes[b-fvkn0u8kgg] {
        flex: 1 !important;
        width: auto !important;
        padding: 0.65rem 0.75rem !important;
        font-size: 0.85rem !important;
        text-align: center !important;
    }

    .btn-cancel[b-fvkn0u8kgg] {
        flex: 1 !important;
        width: auto !important;
        padding: 0.65rem 0.75rem !important;
        font-size: 0.85rem !important;
        text-align: center !important;
    }

    .btn-delete-entry[b-fvkn0u8kgg] {
        width: 100% !important;
        padding: 0.65rem 0.75rem !important;
        font-size: 0.85rem !important;
        justify-content: center !important;
    }
}

/* ===== Bottle Feeding Specific Styles ===== */

.section-title[b-fvkn0u8kgg] {
    color: var(--primary-burgundy);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.number-badge[b-fvkn0u8kgg] {
    background-color: var(--primary-burgundy);
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
}

.milk-type-grid[b-fvkn0u8kgg] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.milk-card[b-fvkn0u8kgg] {
    background-color: #faf5f0;
    border: 1.5px solid #eee3d8;
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

.milk-card.active[b-fvkn0u8kgg] {
    border-color: #f5a623;
    background-color: #fff8ee;
}

.milk-card p[b-fvkn0u8kgg] {
    margin: 0.5rem 0 0 0;
    font-size: 0.85rem;
    color: var(--primary-burgundy);
    font-weight: 600;
}

.milk-icon[b-fvkn0u8kgg] {
    font-size: 1.6rem;
}

.check-badge[b-fvkn0u8kgg] {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #f5a623;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.plus-badge[b-fvkn0u8kgg] {
    position: absolute;
    top: 5px;
    right: 5px;
    color: #f5a623;
    font-size: 1.2rem;
    font-weight: 400;
}

/* Amount selector row */
.amount-selector-row[b-fvkn0u8kgg] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.amount-adjuster[b-fvkn0u8kgg] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    border: 1px solid #eee3d8;
    border-radius: 40px;
    padding: 0.5rem 1rem;
    height: 55px;
    background-color: #faf5f0;
}

.adjust-btn[b-fvkn0u8kgg] {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.2s;
}

.adjust-btn.minus[b-fvkn0u8kgg] {
    background-color: #faead5;
    color: #f5a623;
}

.adjust-btn.plus[b-fvkn0u8kgg] {
    background-color: #faead5;
    color: #f5a623;
}

.adjust-btn:hover[b-fvkn0u8kgg] {
    background-color: #f5a623;
    color: white;
}

.amount-display[b-fvkn0u8kgg] {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-burgundy);
}

.amount-display span[b-fvkn0u8kgg] {
    font-size: 1rem;
    font-weight: 500;
}

.unit-toggle[b-fvkn0u8kgg] {
    display: flex;
    background-color: #faf5f0;
    border-radius: 30px;
    padding: 4px;
    border: 1px solid #eee3d8;
    height: 55px;
}

.unit-btn[b-fvkn0u8kgg] {
    border: none;
    background: transparent;
    padding: 6px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    cursor: pointer;
    transition: all 0.2s;
}

.unit-btn.active[b-fvkn0u8kgg] {
    background-color: #f5a623;
    color: white;
}

.quick-amounts[b-fvkn0u8kgg] {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.quick-btn[b-fvkn0u8kgg] {
    flex: 1;
    background-color: #faf5f0;
    border: 1px solid #eee3d8;
    border-radius: 20px;
    padding: 0.5rem 0;
    color: var(--primary-burgundy);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
}

.quick-btn:hover[b-fvkn0u8kgg] {
    border-color: #f5a623;
}

.quick-btn.active[b-fvkn0u8kgg] {
    background-color: #f5a623;
    border-color: #f5a623;
    color: white;
}

/* Bottle/Solids Mobile Responsive */
@media (max-width: 768px) {
    .milk-type-grid[b-fvkn0u8kgg] {
        grid-template-columns: repeat(2, 1fr);
    }

    .amount-selector-row[b-fvkn0u8kgg] {
        flex-direction: column;
        gap: 1rem;
    }

    .amount-adjuster[b-fvkn0u8kgg] {
        width: 100%;
    }

    .unit-toggle[b-fvkn0u8kgg] {
        width: 100%;
        justify-content: center;
    }

    .quick-amounts[b-fvkn0u8kgg] {
        flex-wrap: wrap;
    }
}

/* Details Row layout matching main Solids tab UI */
.details-row[b-fvkn0u8kgg] {
    display: flex;
    gap: 1rem;
    align-items: flex-end;
    width: 100%;
}

.detail-group[b-fvkn0u8kgg] {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.detail-group.flex-2[b-fvkn0u8kgg] {
    flex: 2;
}

.number-badge[b-fvkn0u8kgg] {
    background-color: var(--primary-burgundy);
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
}

.section-title[b-fvkn0u8kgg] {
    color: var(--primary-burgundy);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* =============================================
   MODAL & TOAST STYLES
   ============================================= */

.modal-overlay[b-fvkn0u8kgg] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    backdrop-filter: blur(2px);
    animation: fadeIn-b-fvkn0u8kgg 0.2s ease-out;
}

@keyframes fadeIn-b-fvkn0u8kgg {
    from { opacity: 0; }
    to { opacity: 1; }
}

.delete-modal[b-fvkn0u8kgg], .loading-modal[b-fvkn0u8kgg] {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    width: 90%;
    max-width: 400px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: slideUp-b-fvkn0u8kgg 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes slideUp-b-fvkn0u8kgg {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-close[b-fvkn0u8kgg] {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
    transition: color 0.2s;
}

.modal-close:hover[b-fvkn0u8kgg] {
    color: #333;
}

.modal-icon-container[b-fvkn0u8kgg] {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.modal-icon-circle[b-fvkn0u8kgg] {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #fff8eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #f5a623;
}

.modal-title[b-fvkn0u8kgg] {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    margin-bottom: 0.5rem;
}

.modal-message[b-fvkn0u8kgg] {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.modal-buttons[b-fvkn0u8kgg] {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-modal-cancel[b-fvkn0u8kgg] {
    flex: 1;
    background: white;
    border: 1.5px solid #d9534f;
    color: #d9534f;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-modal-cancel:hover[b-fvkn0u8kgg] {
    background: #fff5f5;
}

.btn-modal-delete[b-fvkn0u8kgg] {
    flex: 1;
    background: #8B0000;
    border: none;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 0;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-modal-delete:hover[b-fvkn0u8kgg] {
    background: #730000;
}

/* Success Toast */
.success-toast[b-fvkn0u8kgg] {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f2fbf5;
    border: 1px solid #c8e6c9;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border-radius: 12px;
    padding: 12px 20px 12px 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    z-index: 1100;
    animation: toastSlideDown-b-fvkn0u8kgg 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes toastSlideDown-b-fvkn0u8kgg {
    from { transform: translate(-50%, -40px); opacity: 0; }
    to { transform: translate(-50%, 0); opacity: 1; }
}

.toast-icon[b-fvkn0u8kgg] {
    font-size: 1.4rem;
    color: #2e7d32;
    margin-top: 2px;
}

.toast-content h4[b-fvkn0u8kgg] {
    margin: 0 0 2px 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: #2e7d32;
}

.toast-content p[b-fvkn0u8kgg] {
    margin: 0;
    font-size: 0.85rem;
    color: #4caf50;
}

.toast-close[b-fvkn0u8kgg] {
    background: transparent;
    border: none;
    font-size: 1.2rem;
    color: #81c784;
    cursor: pointer;
    margin-left: 10px;
}

.toast-close:hover[b-fvkn0u8kgg] {
    color: #2e7d32;
}
/* /Components/Pages/EditTemperature.razor.rz.scp.css */
/* Edit Page Specific Layout */
.edit-container[b-8uelcbzlfu] {
    width: 100%;
    padding-top: 1rem;
    padding-bottom: 2rem;
    color: var(--text-primary);
}

/* Breadcrumbs style */
.breadcrumbs[b-8uelcbzlfu] {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.breadcrumbs span[b-8uelcbzlfu] {
    margin: 0 0.5rem;
    color: #ccc;
}

/* Header Row layout */
.edit-header-row[b-8uelcbzlfu] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
    width: 100%;
}

.edit-title[b-8uelcbzlfu] {
    flex: 1;
}

.edit-title h1[b-8uelcbzlfu] {
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    margin: 0;
    line-height: 1.2;
}

.edit-title p[b-8uelcbzlfu] {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0.3rem 0 0 0;
}

/* Baby profile badge */
.baby-profile-badge[b-8uelcbzlfu] {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    background-color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(87, 2, 7, 0.05);
    white-space: nowrap;
    flex-shrink: 0;
}

.baby-avatar-img[b-8uelcbzlfu] {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f5a623;
}

.baby-badge-info h4[b-8uelcbzlfu] {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    margin: 0;
}

.baby-badge-info p[b-8uelcbzlfu] {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Back navigation */
.back-navigation[b-8uelcbzlfu] {
    margin-bottom: 1.5rem;
}

.back-link[b-8uelcbzlfu] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-burgundy);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
}

.back-link:hover[b-8uelcbzlfu] {
    color: #f5a623;
}

/* Two column layout */
.edit-content-grid[b-8uelcbzlfu] {
    display: grid;
    grid-template-columns: 7fr 3.5fr;
    gap: 1.5rem;
    width: 100%;
}

@media (max-width: 992px) {
    .edit-content-grid[b-8uelcbzlfu] {
        grid-template-columns: 1fr;
    }
}

/* Form panel card */
.edit-form-card[b-8uelcbzlfu] {
    background-color: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(87, 2, 7, 0.04);
}

.card-section-title[b-8uelcbzlfu] {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.card-section-title i[b-8uelcbzlfu] {
    color: #f5a623;
    font-size: 1.2rem;
}

/* Form fields layout */
.form-row[b-8uelcbzlfu] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.form-group[b-8uelcbzlfu] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label[b-8uelcbzlfu] {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Custom premium inputs */
.input-wrapper[b-8uelcbzlfu] {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i[b-8uelcbzlfu] {
    position: absolute;
    left: 1rem;
    color: #f5a623;
    font-size: 1.1rem;
    pointer-events: none;
}

.input-custom[b-8uelcbzlfu] {
    width: 100%;
    padding: 0.85rem 1rem 0.85rem 2.5rem;
    border-radius: 12px;
    border: 1px solid #eee3d8;
    background-color: #faf5f0;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.input-custom[type="date"][b-8uelcbzlfu], .input-custom[type="time"][b-8uelcbzlfu] {
    position: relative;
}

.input-custom:focus[b-8uelcbzlfu] {
    border-color: var(--primary-burgundy);
    box-shadow: 0 0 0 3px rgba(87, 2, 7, 0.05);
}

.select-arrow[b-8uelcbzlfu] {
    position: absolute;
    right: 1rem;
    color: var(--text-secondary);
    pointer-events: none;
}

/* Duration adjusters row */
.adjusters-row[b-8uelcbzlfu] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.adjuster-card[b-8uelcbzlfu] {
    background-color: #faf5f0;
    border: 1px solid #eee3d8;
    border-radius: 16px;
    padding: 1.25rem;
    text-align: center;
}

.adjuster-card h5[b-8uelcbzlfu] {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    margin-bottom: 0.25rem;
}

.adjuster-card p[b-8uelcbzlfu] {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.counter-control[b-8uelcbzlfu] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.btn-counter[b-8uelcbzlfu] {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #e0d5cb;
    background-color: white;
    color: #f5a623;
    font-size: 1.2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-counter:hover[b-8uelcbzlfu] {
    background-color: #f5a623;
    color: white;
    border-color: #f5a623;
}

.counter-value[b-8uelcbzlfu] {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    min-width: 40px;
}

.counter-unit[b-8uelcbzlfu] {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-left: 0.25rem;
}

/* Calculated read-only row */
.read-only-display[b-8uelcbzlfu] {
    background-color: #f2eae1;
    border-radius: 12px;
    padding: 0.85rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
}

.read-only-display i[b-8uelcbzlfu] {
    color: #f5a623;
    font-size: 1.2rem;
}

.read-only-display span[b-8uelcbzlfu] {
    font-weight: 700;
    font-size: 1rem;
}

.read-only-label[b-8uelcbzlfu] {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
    display: block;
    font-weight: 600;
}

/* Notes Textarea styling */
.notes-textarea-container[b-8uelcbzlfu] {
    position: relative;
    margin-bottom: 2rem;
}

.notes-textarea[b-8uelcbzlfu] {
    width: 100%;
    min-height: 100px;
    padding: 1rem 1rem 1rem 2.5rem;
    border-radius: 12px;
    border: 1px solid #eee3d8;
    background-color: #faf5f0;
    color: var(--text-primary);
    font-size: 0.95rem;
    outline: none;
    resize: none;
    transition: border-color 0.2s;
}

.notes-textarea:focus[b-8uelcbzlfu] {
    border-color: var(--primary-burgundy);
}

.notes-icon-left[b-8uelcbzlfu] {
    position: absolute;
    left: 1rem;
    top: 1.1rem;
    color: #f5a623;
    font-size: 1.1rem;
    pointer-events: none;
}

/* Action button bar styling */
.action-buttons-bar[b-8uelcbzlfu] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
}

.buttons-left[b-8uelcbzlfu] {
    display: flex;
    gap: 1rem;
}

.btn-save-changes[b-8uelcbzlfu] {
    background-color: #f5a623;
    color: white;
    border: none;
    border-radius: 12px;
    padding: 0.85rem 2.25rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.1s;
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.25);
}

.btn-save-changes:hover[b-8uelcbzlfu] {
    opacity: 0.92;
}

.btn-save-changes:active[b-8uelcbzlfu] {
    transform: scale(0.98);
}

.btn-cancel[b-8uelcbzlfu] {
    background-color: white;
    color: var(--primary-burgundy);
    border: 1.5px solid #e2d7cc;
    border-radius: 12px;
    padding: 0.85rem 2rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
    text-decoration: none;
}

.btn-cancel:hover[b-8uelcbzlfu] {
    background-color: #faf5f0;
}

.btn-delete-entry[b-8uelcbzlfu] {
    background: transparent;
    border: none;
    color: #d9534f;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background-color 0.2s;
}

.btn-delete-entry:hover[b-8uelcbzlfu] {
    background-color: rgba(217, 83, 79, 0.08);
}

/* Right Sidebar: Summary */
.summary-sidebar-card[b-8uelcbzlfu] {
    background-color: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(87, 2, 7, 0.04);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: fit-content;
}

.summary-title[b-8uelcbzlfu] {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0;
}

.summary-title-icon-wrapper[b-8uelcbzlfu] {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #faefe6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.summary-title-icon-wrapper i[b-8uelcbzlfu] {
    color: var(--primary-burgundy);
}

.summary-list[b-8uelcbzlfu] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.summary-item[b-8uelcbzlfu] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #f3ede6;
}

.summary-item-label[b-8uelcbzlfu] {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.summary-item-label i[b-8uelcbzlfu] {
    color: #f5a623;
    font-size: 1rem;
}

.summary-item-value[b-8uelcbzlfu] {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* Warning alert box */
.warning-alert-box[b-8uelcbzlfu] {
    background-color: #fff8ee;
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid #f7e7d3;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.warning-alert-box i[b-8uelcbzlfu] {
    color: #f5a623;
    font-size: 1.25rem;
    margin-top: 0.1rem;
}

.warning-alert-box p[b-8uelcbzlfu] {
    font-size: 0.8rem;
    color: #8a6d3b;
    margin: 0;
    line-height: 1.4;
}

/* Loading state card styling */
.loading-card-container[b-8uelcbzlfu] {
    background-color: white;
    border-radius: 20px;
    padding: 4rem 2rem;
    box-shadow: 0 4px 20px rgba(87, 2, 7, 0.04);
    text-align: center;
    width: 100%;
    margin-top: 1rem;
}

/* Mobile Responsive Enhancements */
@media (max-width: 768px) {
    .edit-header-row[b-8uelcbzlfu] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.85rem;
    }

    .edit-title h1[b-8uelcbzlfu] {
        font-size: 1.4rem;
        word-break: break-word;
    }

    .baby-profile-badge[b-8uelcbzlfu] {
        align-self: flex-start;
    }

    .form-row[b-8uelcbzlfu] {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }

    .adjusters-row[b-8uelcbzlfu] {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }

    .calculated-row[b-8uelcbzlfu] {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }

    .edit-form-card[b-8uelcbzlfu] {
        padding: 1.25rem 1rem;
        border-radius: 16px;
    }

    .summary-sidebar-card[b-8uelcbzlfu] {
        padding: 1.25rem 1rem;
        border-radius: 16px;
    }

    .action-buttons-bar[b-8uelcbzlfu] {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .buttons-left[b-8uelcbzlfu] {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .btn-save-changes[b-8uelcbzlfu], .btn-cancel[b-8uelcbzlfu] {
        width: 100%;
        text-align: center;
    }

    .btn-delete-entry[b-8uelcbzlfu] {
        justify-content: center;
        width: 100%;
    }
}

/* Measurement Method Card Grid matching Temperature main page */
.method-card[b-8uelcbzlfu] {
    background-color: white;
    border: 1.5px solid transparent;
    border-radius: 12px;
    padding: 0.8rem 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

.method-card.active[b-8uelcbzlfu] {
    border-color: var(--accent-gold) !important;
}

.check-badge[b-8uelcbzlfu] {
    position: absolute;
    top: -6px;
    right: -6px;
    background-color: var(--accent-gold);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.plus-badge[b-8uelcbzlfu] {
    position: absolute;
    top: 4px;
    right: 8px;
    color: #f5a623;
    font-weight: bold;
    font-size: 1rem;
}

/* Symptoms Pills matching Temperature main page */
.symptom-pill[b-8uelcbzlfu] {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid #eee3d8;
    background: white;
    color: var(--text-primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.symptom-pill.active[b-8uelcbzlfu] {
    background: #fffaf0 !important;
    border-color: var(--accent-gold) !important;
    color: var(--primary-burgundy) !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06) !important;
}

/* =============================================
   MODAL & TOAST STYLES
   ============================================= */

.modal-overlay[b-8uelcbzlfu] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    backdrop-filter: blur(2px);
    animation: fadeIn-b-8uelcbzlfu 0.2s ease-out;
}

@keyframes fadeIn-b-8uelcbzlfu {
    from { opacity: 0; }
    to { opacity: 1; }
}

.delete-modal[b-8uelcbzlfu], .loading-modal[b-8uelcbzlfu] {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    width: 90%;
    max-width: 400px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: slideUp-b-8uelcbzlfu 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes slideUp-b-8uelcbzlfu {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-close[b-8uelcbzlfu] {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
    transition: color 0.2s;
}

.modal-close:hover[b-8uelcbzlfu] {
    color: #333;
}

.modal-icon-container[b-8uelcbzlfu] {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.modal-icon-circle[b-8uelcbzlfu] {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #fff8eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #f5a623;
}

.modal-title[b-8uelcbzlfu] {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    margin-bottom: 0.5rem;
}

.modal-message[b-8uelcbzlfu] {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.modal-buttons[b-8uelcbzlfu] {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-modal-cancel[b-8uelcbzlfu] {
    flex: 1;
    background: white;
    border: 1.5px solid #d9534f;
    color: #d9534f;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-modal-cancel:hover[b-8uelcbzlfu] {
    background: #fff5f5;
}

.btn-modal-delete[b-8uelcbzlfu] {
    flex: 1;
    background: #8B0000;
    border: none;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 0;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-modal-delete:hover[b-8uelcbzlfu] {
    background: #730000;
}

/* Success Toast */
.success-toast[b-8uelcbzlfu] {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f2fbf5;
    border: 1px solid #c8e6c9;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border-radius: 12px;
    padding: 12px 20px 12px 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    z-index: 1100;
    animation: toastSlideDown-b-8uelcbzlfu 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes toastSlideDown-b-8uelcbzlfu {
    from { transform: translate(-50%, -40px); opacity: 0; }
    to { transform: translate(-50%, 0); opacity: 1; }
}

.toast-icon[b-8uelcbzlfu] {
    font-size: 1.4rem;
    color: #2e7d32;
    margin-top: 2px;
}

.toast-content h4[b-8uelcbzlfu] {
    margin: 0 0 2px 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: #2e7d32;
}

.toast-content p[b-8uelcbzlfu] {
    margin: 0;
    font-size: 0.85rem;
    color: #4caf50;
}

.toast-close[b-8uelcbzlfu] {
    background: transparent;
    border: none;
    font-size: 1.2rem;
    color: #81c784;
    cursor: pointer;
    margin-left: 10px;
}

.toast-close:hover[b-8uelcbzlfu] {
    color: #2e7d32;
}
/* /Components/Pages/Feed.razor.rz.scp.css */
.dashboard-layout[b-dht43ikfzc] {
    display: flex;
    gap: 1rem;
    /* Removed flex: 1 and min-height: 0 to allow natural vertical growth */
}

.left-column[b-dht43ikfzc] {
    flex: 7;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    justify-content: flex-start;
}

.right-column[b-dht43ikfzc] {
    flex: 3;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    justify-content: flex-start;
    position: sticky;
    top: 0;
    height: max-content;
}

.dash-card[b-dht43ikfzc] {
    background-color: #fef7f0;
    border-radius: 12px;
    padding: 0.5rem 1rem;
    box-shadow: 0 4px 10px rgba(87, 2, 7, 0.05);
}

/* Header Section */
.dashboard-header[b-dht43ikfzc] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
}

.header-icon-circle[b-dht43ikfzc] {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #d79b8a;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.header-baby-img[b-dht43ikfzc] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.greeting h1[b-dht43ikfzc] {
    color: var(--primary-burgundy);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0;
}

.greeting p[b-dht43ikfzc] {
    color: var(--accent-gold);
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.age-badge[b-dht43ikfzc] {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #c0915a;
    font-size: 0.8rem;
    background-color: transparent;
    padding: 0;
}

.chart-icon-circle[b-dht43ikfzc] {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1.5px solid var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 1rem;
}

/* Today's Summary */
.summary-section[b-dht43ikfzc] {
    position: relative;
    padding-top: 10px;
}

.summary-title-pill[b-dht43ikfzc] {
    background-color: #faead5;
    color: var(--primary-burgundy);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.summary-row[b-dht43ikfzc] {
    display: flex;
    gap: 1rem;
    padding: 0.5rem 1rem 0.5rem 1rem;
}

.summary-card[b-dht43ikfzc] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.summary-card:not(:last-child)[b-dht43ikfzc] {
    border-right: 1px solid rgba(87, 2, 7, 0.1);
}

.sum-icon[b-dht43ikfzc] {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.sum-icon.dark-red[b-dht43ikfzc] {
    background-color: var(--primary-burgundy);
    color: white;
}

.sum-text h4[b-dht43ikfzc] {
    margin: 0;
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 1.2rem;
}

.sum-text h4 span[b-dht43ikfzc] {
    font-size: 0.8rem;
    font-weight: 500;
}

.sum-text p[b-dht43ikfzc] {
    margin: 0;
    color: var(--primary-burgundy);
    font-size: 0.75rem;
    line-height: 1.1;
}

/* Segmented Tabs */
.segmented-tabs[b-dht43ikfzc] {
    display: flex;
    gap: 0.75rem;
    background-color: var(--primary-burgundy);
    padding: 0.5rem;
    border-radius: 16px;
    margin-bottom: 0.5rem;
}

.tab-btn[b-dht43ikfzc] {
    flex: 1;
    border: none;
    background-color: transparent;
    color: rgba(255, 255, 255, 0.8);
    padding: 0.6rem 1rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.tab-btn:hover[b-dht43ikfzc] {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
}

.tab-btn.active[b-dht43ikfzc] {
    background-color: var(--accent-gold);
    color: var(--primary-burgundy);
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Tab Content Area */
.main-content-card[b-dht43ikfzc] {
    background-color: #fdf6ef;
    border: 1px solid rgba(87, 2, 7, 0.08);
    border-radius: 15px;
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1;
    margin-top: 10px;
    padding: 0.5rem;
    min-height: 680px;
}

.tab-content-area[b-dht43ikfzc] {
    background-color: transparent;
    padding: 0.2rem 0.5rem;
    flex: 1;
    position: relative;
}

.section-title[b-dht43ikfzc] {
    color: var(--primary-burgundy);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.number-badge[b-dht43ikfzc] {
    background-color: var(--primary-burgundy);
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
}

.section-icon[b-dht43ikfzc] {
    font-size: 1.3rem;
}

/* Bottle Feeding - Milk Type Grid */
.milk-type-grid[b-dht43ikfzc] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.milk-card[b-dht43ikfzc] {
    background-color: #ffffff !important;
    border: 1px solid rgba(87, 2, 7, 0.08);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.milk-card:hover[b-dht43ikfzc] {
    transform: translateY(-3px) scale(1.02);
    border-color: var(--accent-gold) !important;
    box-shadow: 0 6px 16px rgba(87, 2, 7, 0.1) !important;
    background-color: #ffffff !important;
}

.milk-card:hover .milk-icon[b-dht43ikfzc] {
    transform: scale(1.15);
    transition: transform 0.2s ease;
}

.milk-card.active[b-dht43ikfzc] {
    border: 2px solid var(--accent-gold) !important;
    background-color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(251, 197, 0, 0.25) !important;
    transform: translateY(-2px);
}

.milk-card p[b-dht43ikfzc] {
    margin: 0.5rem 0 0 0;
    font-size: 0.85rem;
    color: var(--primary-burgundy);
    font-weight: 500;
}

.check-badge[b-dht43ikfzc] {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--accent-gold);
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.plus-badge[b-dht43ikfzc] {
    position: absolute;
    top: 5px;
    right: 5px;
    color: var(--accent-gold);
    font-size: 1.2rem;
    font-weight: 400;
}

/* Enter Amount Row */
.amount-selector-row[b-dht43ikfzc] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.amount-adjuster[b-dht43ikfzc] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    border: 1px solid rgba(87, 2, 7, 0.08);
    border-radius: 40px;
    padding: 0.5rem 1rem;
    height: 55px; /* Uniform height */
    background-color: white;
}

.timer-adjuster-wrapper[b-dht43ikfzc] {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.timer-adjuster-pill[b-dht43ikfzc] {
    margin-right: 0;
    flex: none;
    width: 100%;
    height: 55px; /* Matches amount-adjuster */
    padding: 0.5rem 1rem;
    border-radius: 40px;
}

.adjust-btn[b-dht43ikfzc] {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.25s ease;
}

.adjust-btn.minus[b-dht43ikfzc],
.adjust-btn.plus[b-dht43ikfzc] {
    background-color: #faead5;
    color: var(--primary-burgundy);
    font-weight: 700;
}

.adjust-btn:hover[b-dht43ikfzc] {
    background-color: var(--accent-gold);
    color: var(--primary-burgundy);
    transform: scale(1.18);
    box-shadow: 0 4px 10px rgba(251, 197, 0, 0.4);
}

.adjust-btn:active[b-dht43ikfzc] {
    transform: scale(0.95);
}

.amount-display[b-dht43ikfzc] {
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: baseline !important;
    justify-content: center !important;
    gap: 4px !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: var(--primary-burgundy) !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    margin: 0 !important;
}

.amount-display span[b-dht43ikfzc] {
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    display: inline !important;
}

.unit-toggle[b-dht43ikfzc] {
    display: flex;
    background-color: transparent;
    border-radius: 30px;
    padding: 4px;
    border: 1px solid rgba(87, 2, 7, 0.08);
    height: 55px; /* Uniform height */
}

.unit-btn[b-dht43ikfzc] {
    border: none;
    background: transparent;
    padding: 6px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    cursor: pointer;
    transition: all 0.25s ease;
}

.unit-btn:hover[b-dht43ikfzc] {
    background-color: rgba(251, 197, 0, 0.25);
    color: var(--primary-burgundy);
    transform: translateY(-1px);
}

.unit-btn.active[b-dht43ikfzc] {
    background-color: var(--accent-gold);
    color: var(--primary-burgundy);
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(251, 197, 0, 0.3);
}

.quick-amounts[b-dht43ikfzc] {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.quick-btn[b-dht43ikfzc] {
    flex: 1;
    background-color: white;
    border: 1px solid rgba(87, 2, 7, 0.1);
    border-radius: 20px;
    padding: 0.5rem 0;
    color: var(--primary-burgundy);
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.25s ease;
}

.quick-btn:hover[b-dht43ikfzc] {
    background-color: #fffdf5;
    border-color: var(--accent-gold);
    color: var(--primary-burgundy);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(87, 2, 7, 0.08);
}

.quick-btn.active[b-dht43ikfzc] {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--primary-burgundy);
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(251, 197, 0, 0.3);
}

.notes-input-container[b-dht43ikfzc] {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 10px;
    padding: 0.6rem 1rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

.notes-icon[b-dht43ikfzc] {
    color: #999;
    margin-right: 10px;
}

.notes-input[b-dht43ikfzc] {
    border: none;
    background: transparent;
    width: 100%;
    outline: none;
    font-size: 0.9rem;
    color: var(--text-primary);
}

/* Breastfeeding - Timers */
.breast-timers-row[b-dht43ikfzc] {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.4rem;
}

.breast-timer-card[b-dht43ikfzc] {
    flex: 1;
    background-color: transparent;
    border: 1px solid rgba(87, 2, 7, 0.08);
    border-radius: 12px;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.breast-timer-card h5[b-dht43ikfzc] {
    color: var(--primary-burgundy);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.breast-timer-card p[b-dht43ikfzc] {
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.timer-display[b-dht43ikfzc] {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    min-width: 40px;
    text-align: center;
    line-height: 1;
}

.unit-text[b-dht43ikfzc] {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Breastfeeding Details Row */
.breast-details-row[b-dht43ikfzc] {
    display: flex;
    background-color: white;
    border-radius: 10px;
    margin-bottom: 0.4rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    align-items: center;
}

.detail-box[b-dht43ikfzc] {
    flex: 1;
    padding: 0.4rem 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    border-right: 1px solid rgba(87, 2, 7, 0.08);
}

.detail-box:last-child[b-dht43ikfzc] {
    border-right: none;
}

.detail-box.flex-2[b-dht43ikfzc] {
    flex: 2;
}

.detail-box p[b-dht43ikfzc] {
    margin: 0;
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 2px;
}

.detail-box h4[b-dht43ikfzc] {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-burgundy);
}

.detail-box h4 span[b-dht43ikfzc] {
    font-size: 0.75rem;
    font-weight: 500;
}

.detail-icon[b-dht43ikfzc] {
    font-size: 2rem;
    color: var(--accent-gold);
    line-height: 1;
}

.custom-select-wrapper select[b-dht43ikfzc] {
    width: auto;
    border: none;
    background: transparent;
    font-size: 0.85rem;
    color: var(--primary-burgundy);
    font-weight: 500;
    outline: none;
    cursor: pointer;
    padding: 0;
    margin-top: 2px;
}

.notes-pseudo-input[b-dht43ikfzc] {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2px;
}

.notes-pseudo-input span:first-child[b-dht43ikfzc] {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-save[b-dht43ikfzc] {
    width: 100%;
    background-color: var(--accent-gold);
    color: var(--primary-burgundy);
    border: none;
    border-radius: 12px; /* Smoother curve */
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
    height: 55px; /* Uniform height */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Feeding History */
.view-all-link[b-dht43ikfzc] {
    color: var(--accent-gold);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Feeding History */

.feeding-history-list[b-dht43ikfzc] {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-left: 20px; /* Space for timeline */
}

.timeline-line[b-dht43ikfzc] {
    position: absolute;
    left: 4px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background-color: var(--accent-gold); /* Solid gold to match screenshot */
    z-index: 1;
}

.history-item[b-dht43ikfzc] {
    display: flex;
    align-items: center;
    position: relative;
    padding: 0.6rem 0;
    z-index: 2;
}

.history-item[b-dht43ikfzc]::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 80px; /* Start after the time column */
    right: 0;
    border-bottom: 1px dashed rgba(87, 2, 7, 0.15);
}

.history-item:last-child[b-dht43ikfzc]::after {
    display: none;
}

.timeline-dot[b-dht43ikfzc] {
    position: absolute;
    left: -20px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: white;
    border: 2px solid var(--accent-gold);
}

.history-time[b-dht43ikfzc] {
    width: 80px;
    display: flex;
    flex-direction: column;
}

.history-time strong[b-dht43ikfzc] {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-burgundy);
}

.history-time span[b-dht43ikfzc] {
    font-size: 0.7rem;
    color: var(--text-secondary);
}

.history-icon[b-dht43ikfzc] {
    width: 40px;
    display: flex;
    justify-content: center;
    font-size: 1.5rem;
}

.history-type[b-dht43ikfzc] {
    flex: 1;
    font-size: 0.9rem;
    color: var(--primary-burgundy);
    font-weight: 500;
}

.history-amount[b-dht43ikfzc] {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-burgundy);
    white-space: nowrap;
    text-align: right;
}

.history-arrow[b-dht43ikfzc] {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

/* Breastfeeding History specific styles */
.bf-history[b-dht43ikfzc] {
    justify-content: space-between;
}

.history-time-single[b-dht43ikfzc] {
    width: 120px;
    font-size: 0.85rem;
    color: var(--primary-burgundy);
    font-weight: 500;
}

.bf-stat[b-dht43ikfzc] {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bf-stat span[b-dht43ikfzc] {
    font-size: 0.7rem;
    color: var(--text-secondary);
}

.bf-stat strong[b-dht43ikfzc] {
    font-size: 0.85rem;
    color: var(--primary-burgundy);
}

.history-mood[b-dht43ikfzc] {
    font-size: 1.2rem;
    margin: 0 10px;
}

/* Floating Action Button */
.fab-add-feeding[b-dht43ikfzc] {
    position: absolute;
    bottom: -10px;
    right: 20px;
    width: 85px;
    height: 85px;
    background-color: var(--accent-gold);
    color: var(--primary-burgundy);
    border: none;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(251, 197, 0, 0.6);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    z-index: 10;
}

.fab-add-feeding .bi-plus[b-dht43ikfzc] {
    font-size: 2.5rem;
    line-height: 0.5;
    margin-bottom: 2px;
    font-weight: 300;
    -webkit-text-stroke: 1px var(--primary-burgundy);
}

/* Recent Activity Styles */
.activity-header[b-dht43ikfzc] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.activity-header h3[b-dht43ikfzc] {
    color: var(--primary-burgundy);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.activity-header a[b-dht43ikfzc] {
    color: var(--accent-gold);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.activity-list[b-dht43ikfzc] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.activity-item[b-dht43ikfzc] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px dashed rgba(87, 2, 7, 0.1);
}

.activity-item:last-child[b-dht43ikfzc] {
    border-bottom: none;
    padding-bottom: 0;
}

.activity-icon[b-dht43ikfzc] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.activity-icon.feed[b-dht43ikfzc] {
    background-color: #faeaea;
    color: var(--primary-burgundy);
}

.activity-icon.diaper[b-dht43ikfzc] {
    background-color: #fef5e7;
    color: #e68a00;
}

.activity-icon.sleep[b-dht43ikfzc] {
    background-color: #f3ebf8;
    color: var(--purple);
}

.activity-details[b-dht43ikfzc] {
    flex: 1;
}

.activity-details h4[b-dht43ikfzc] {
    margin: 0;
    color: var(--primary-burgundy);
    font-weight: 500;
    font-size: 0.95rem;
}

.activity-details p[b-dht43ikfzc] {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.activity-arrow[b-dht43ikfzc] {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

/* Solids Tab Specific */
.category-grid[b-dht43ikfzc] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.type-card[b-dht43ikfzc] {
    background-color: transparent;
    border: 1px solid rgba(87, 2, 7, 0.08);
    border-radius: 10px;
    padding: 0.8rem 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.type-card.active[b-dht43ikfzc] {
    box-shadow: 0 4px 15px rgba(251, 197, 0, 0.15);
}

.check-badge[b-dht43ikfzc] {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    background-color: var(--accent-gold);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.duration-adjuster[b-dht43ikfzc] {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 10px;
    padding: 0.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    border: 1px solid #f0f0f0;
    justify-content: space-between;
}

.duration-btn[b-dht43ikfzc] {
    background: #fff5eb;
    border: none;
    border-radius: 8px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.duration-btn:hover[b-dht43ikfzc] {
    background: #ffecd9;
}

.duration-value[b-dht43ikfzc] {
    text-align: center;
    line-height: 1;
}

.details-row[b-dht43ikfzc] {
    display: flex;
    gap: 1rem;
}

.detail-group[b-dht43ikfzc] {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.detail-group.flex-2[b-dht43ikfzc] {
    flex: 2;
}

/* Responsiveness */
@media (max-width: 1024px) {
    .dashboard-layout[b-dht43ikfzc] {
        flex-direction: column;
        flex: none;
        height: auto;
    }
    
    .summary-row[b-dht43ikfzc] {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.25rem !important;
        padding: 0.4rem 0.25rem !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .summary-card[b-dht43ikfzc] {
        padding: 0.35rem 0.2rem !important;
        gap: 0.25rem !important;
        flex-direction: column !important;
        text-align: center !important;
        align-items: center !important;
        justify-content: center !important;
        min-width: 0 !important;
        overflow: hidden !important;
    }

    .sum-icon[b-dht43ikfzc] {
        width: 30px !important;
        height: 30px !important;
        font-size: 0.95rem !important;
        margin-bottom: 2px !important;
        flex-shrink: 0 !important;
    }

    .sum-text[b-dht43ikfzc] {
        width: 100% !important;
        overflow: hidden !important;
        text-align: center !important;
    }

    .sum-text h4[b-dht43ikfzc] {
        font-size: 0.78rem !important;
        line-height: 1.1 !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        margin: 0 !important;
    }

    .sum-text h4 span[b-dht43ikfzc] {
        font-size: 0.65rem !important;
    }

    .sum-text p[b-dht43ikfzc] {
        font-size: 0.65rem !important;
        line-height: 1.1 !important;
        text-align: center !important;
        white-space: nowrap !important;
        margin: 0 !important;
    }

    .milk-type-grid[b-dht43ikfzc] {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 0.35rem !important;
        width: 100% !important;
    }
    
    .milk-type-grid .milk-card[b-dht43ikfzc] {
        padding: 0.5rem 0.2rem !important;
        text-align: center !important;
    }
    
    .milk-type-grid .milk-card p[b-dht43ikfzc] {
        font-size: 0.68rem !important;
        margin-top: 0.25rem !important;
        line-height: 1.1 !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
    
    .milk-type-grid .milk-card i.milk-icon[b-dht43ikfzc] {
        font-size: 1.25rem !important;
    }
    
    .breast-timers-row[b-dht43ikfzc] {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 0.5rem !important;
    }

    .breast-details-row[b-dht43ikfzc] {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 0.5rem !important;
        padding: 0 !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        margin-bottom: 0.5rem !important;
    }

    .breast-details-row .detail-box[b-dht43ikfzc] {
        flex: 1 1 calc(50% - 0.25rem) !important;
        background-color: white !important;
        border-radius: 12px !important;
        border: 1px solid rgba(87, 2, 7, 0.08) !important;
        padding: 0.5rem 0.6rem !important;
        box-sizing: border-box !important;
        border-right: 1px solid rgba(87, 2, 7, 0.08) !important;
    }

    .breast-details-row .detail-box.flex-2[b-dht43ikfzc] {
        flex: 1 1 100% !important;
        width: 100% !important;
        border-right: 1px solid rgba(87, 2, 7, 0.08) !important;
    }

    .amount-selector-row[b-dht43ikfzc] {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 0.5rem !important;
        align-items: center !important;
        width: 100% !important;
    }

    .amount-adjuster[b-dht43ikfzc] {
        padding: 0.35rem 0.5rem !important;
        height: 44px !important;
        border-radius: 25px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .unit-toggle[b-dht43ikfzc] {
        height: 44px !important;
        width: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 3px !important;
        box-sizing: border-box !important;
    }

    .unit-btn[b-dht43ikfzc] {
        flex: 1 !important;
        padding: 4px 8px !important;
        font-size: 0.8rem !important;
    }

    .timer-adjuster-pill[b-dht43ikfzc] {
        height: auto;
        padding: 0.4rem 0.6rem;
    }

    .amount-display[b-dht43ikfzc] {
        font-size: 1.75rem; /* slightly smaller number */
    }

    .unit-toggle[b-dht43ikfzc] {
        padding: 3px; /* smaller border padding */
    }

    .unit-btn[b-dht43ikfzc] {
        padding: 6px 14px; /* less horizontal padding on buttons */
        font-size: 0.8rem;
    }
    
    .quick-amounts[b-dht43ikfzc] {
        flex-wrap: wrap;
    }

    /* Save Log Button: Compact Height */
    .btn-save[b-dht43ikfzc] {
        height: 42px !important;
        font-size: 0.9rem !important;
        border-radius: 10px !important;
    }

    /* Feeding History: Compact & Single Row Items */
    .history-section-header[b-dht43ikfzc] {
        margin-top: 1.25rem !important;
        margin-bottom: 0.5rem !important;
    }

    .history-section-header h3[b-dht43ikfzc] {
        font-size: 0.95rem !important;
    }

    .view-all-link[b-dht43ikfzc] {
        font-size: 0.78rem !important;
    }

    .feeding-history-list[b-dht43ikfzc] {
        padding-left: 14px !important;
    }

    .timeline-line[b-dht43ikfzc] {
        left: 2px !important;
    }

    .timeline-dot[b-dht43ikfzc] {
        left: -14px !important;
        width: 8px !important;
        height: 8px !important;
    }

    .history-item[b-dht43ikfzc], .bf-history[b-dht43ikfzc] {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 0.25rem !important;
        padding: 0.45rem 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .history-time-single[b-dht43ikfzc] {
        width: auto !important;
        min-width: 80px !important;
        font-size: 0.75rem !important;
        white-space: nowrap !important;
        flex-shrink: 0 !important;
    }

    .bf-stat[b-dht43ikfzc] {
        margin: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        flex-shrink: 0 !important;
    }

    .bf-stat span[b-dht43ikfzc] {
        font-size: 0.65rem !important;
    }

    .bf-stat strong[b-dht43ikfzc] {
        font-size: 0.75rem !important;
        white-space: nowrap !important;
    }

    .history-mood[b-dht43ikfzc] {
        font-size: 0.85rem !important;
        margin: 0 2px !important;
        flex-shrink: 0 !important;
    }

    .history-arrow[b-dht43ikfzc] {
        font-size: 0.75rem !important;
        flex-shrink: 0 !important;
    }

    /* Recent Activity: Compact Section & List Items */
    .activity-header[b-dht43ikfzc] {
        margin-bottom: 0.5rem !important;
    }

    .activity-header h3[b-dht43ikfzc] {
        font-size: 0.95rem !important;
    }

    .activity-header a[b-dht43ikfzc] {
        font-size: 0.78rem !important;
    }

    .activity-list[b-dht43ikfzc] {
        gap: 0.5rem !important;
    }

    .activity-item[b-dht43ikfzc] {
        gap: 0.6rem !important;
        padding-bottom: 0.5rem !important;
    }

    .activity-icon[b-dht43ikfzc] {
        width: 32px !important;
        height: 32px !important;
        font-size: 1rem !important;
    }

    .activity-details h4[b-dht43ikfzc] {
        font-size: 0.85rem !important;
        margin: 0 0 2px 0 !important;
    }

    .activity-details p[b-dht43ikfzc] {
        font-size: 0.72rem !important;
        margin: 0 !important;
    }
    
    .bf-history .bf-stat[b-dht43ikfzc] {
        margin: 0 2px !important;
    }
    
    .category-grid[b-dht43ikfzc] {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .details-row[b-dht43ikfzc] {
        flex-direction: row;
        gap: 0.5rem;
    }
    
    .breast-timers-row[b-dht43ikfzc] {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.5rem !important;
        flex-direction: row !important;
        width: 100% !important;
    }

    .breast-timer-card[b-dht43ikfzc] {
        padding: 0.6rem 0.35rem !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }

    .breast-timer-card h5[b-dht43ikfzc] {
        font-size: 0.85rem !important;
        margin-bottom: 2px !important;
    }

    .breast-timer-card p[b-dht43ikfzc] {
        font-size: 0.7rem !important;
        margin-bottom: 0.4rem !important;
    }

    .timer-adjuster-wrapper[b-dht43ikfzc] {
        width: 100% !important;
        justify-content: center !important;
    }

    .timer-adjuster-pill[b-dht43ikfzc] {
        height: 42px !important;
        padding: 0.2rem 0.4rem !important;
        border-radius: 25px !important;
        width: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        box-sizing: border-box !important;
    }

    .timer-adjuster-pill .adjust-btn[b-dht43ikfzc] {
        width: 26px !important;
        height: 26px !important;
        font-size: 0.9rem !important;
        flex-shrink: 0 !important;
    }

    .timer-display[b-dht43ikfzc] {
        font-size: 1.05rem !important;
        font-weight: 700 !important;
        display: flex !important;
        align-items: baseline !important;
        gap: 2px !important;
    }

    .unit-text[b-dht43ikfzc] {
        font-size: 0.7rem !important;
        font-weight: 500 !important;
        color: var(--text-secondary) !important;
    }

    .unit-toggle[b-dht43ikfzc] {
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        height: auto !important;
        padding: 4px !important;
    }

    /* 3 Tabs fit 100% in 1 Row on Mobile */
    .segmented-tabs[b-dht43ikfzc] {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.3rem !important;
        padding: 0.35rem !important;
        border-radius: 14px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .segmented-tabs[b-dht43ikfzc]::-webkit-scrollbar {
        display: none !important;
    }

    .tab-btn[b-dht43ikfzc] {
        padding: 0.5rem 0.2rem !important;
        font-size: 0.73rem !important;
        width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
        white-space: nowrap !important;
        border-radius: 10px !important;
        gap: 3px !important;
        font-weight: 600 !important;
    }

    .tab-btn span[b-dht43ikfzc], .tab-btn i[b-dht43ikfzc] {
        font-size: 0.85rem !important;
    }
}
/* /Components/Pages/Growth.razor.rz.scp.css */
/* Growth Tracker Specific Styles */

.dashboard-layout[b-6jnc5uv6jy] {
    display: flex;
    gap: 1rem;
}

.left-column[b-6jnc5uv6jy] {
    flex: 7;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: flex-start;
}

.right-column[b-6jnc5uv6jy] {
    flex: 3;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: flex-start;
    position: sticky;
    top: 0;
    height: max-content;
}

/* Header Area */
.growth-header-container[b-6jnc5uv6jy] {
    background-color: #4b0005; /* Dark Burgundy */
    border-radius: 15px;
    padding: 1.5rem;
    color: white;
    margin-bottom: 0.5rem;
}

.growth-header-container h1[b-6jnc5uv6jy] {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0;
    color: white;
}

.who-standards-btn[b-6jnc5uv6jy] {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.who-standards-btn:hover[b-6jnc5uv6jy] {
    background: var(--accent-gold);
    color: #4b0005;
    box-shadow: 0 2px 8px rgba(251, 197, 0, 0.4);
    transform: translateY(-1px);
}

.growth-header-container p[b-6jnc5uv6jy] {
    font-size: 0.95rem;
    opacity: 0.85;
    margin-top: 0.4rem;
    margin-bottom: 1.5rem;
}

/* Summary Card within Header */
.growth-summary-card[b-6jnc5uv6jy] {
    background-color: rgba(100, 0, 10, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-metric[b-6jnc5uv6jy] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-metric:last-child[b-6jnc5uv6jy] {
    border-right: none;
}

.metric-label[b-6jnc5uv6jy] {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.metric-value[b-6jnc5uv6jy] {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.metric-value span[b-6jnc5uv6jy] {
    font-size: 0.9rem;
    font-weight: normal;
}

/* Date special styling */
.metric-date-value[b-6jnc5uv6jy] {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.2;
    color: white;
}
.metric-time-value[b-6jnc5uv6jy] {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.2rem;
}

/* Dash Card */
.dash-card[b-6jnc5uv6jy] {
    background-color: #fcfcfc;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(87, 2, 7, 0.05);
}

.card-title-row[b-6jnc5uv6jy] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.card-title-row h3[b-6jnc5uv6jy] {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-title-row .icon[b-6jnc5uv6jy] {
    color: #e53935;
}

/* Date Dropdown override */
.date-dropdown[b-6jnc5uv6jy] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--primary-burgundy);
    font-weight: 600;
    background-color: #fff;
    border: 1px solid rgba(87, 2, 7, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    cursor: pointer;
}

/* Form Styling */
.form-label[b-6jnc5uv6jy] {
    font-size: 0.8rem;
    color: var(--primary-burgundy);
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
}

.input-with-unit[b-6jnc5uv6jy] {
    display: flex;
    background-color: #fff;
    border: 1px solid rgba(87, 2, 7, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.2rem;
}

.input-with-unit input[b-6jnc5uv6jy] {
    flex: 1;
    border: none;
    padding: 0.8rem 1rem;
    outline: none;
    color: var(--primary-burgundy);
    font-size: 1rem;
    font-weight: 600;
}

.input-with-unit select[b-6jnc5uv6jy] {
    border: none;
    background-color: #f9f9f9;
    border-left: 1px solid rgba(87, 2, 7, 0.1);
    padding: 0 1rem;
    outline: none;
    color: var(--primary-burgundy);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
}

.notes-box[b-6jnc5uv6jy] {
    background-color: #fff;
    border: 1px solid rgba(87, 2, 7, 0.1);
    border-radius: 10px;
    padding: 0.8rem 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}

.notes-box textarea[b-6jnc5uv6jy] {
    border: none;
    background: transparent;
    width: 100%;
    outline: none;
    color: var(--primary-burgundy);
    font-size: 0.9rem;
    resize: none;
}

.btn-save-growth[b-6jnc5uv6jy] {
    background-color: var(--accent-gold);
    color: var(--primary-burgundy);
    border: none;
    border-radius: 10px;
    padding: 1rem;
    font-weight: 700;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

/* History Timeline Section */
.history-timeline[b-6jnc5uv6jy] {
    position: relative;
    padding-left: 1.5rem;
    margin-top: 1rem;
}

/* Vertical line */
.history-timeline[b-6jnc5uv6jy]::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background-color: var(--accent-gold);
}

.history-header-row[b-6jnc5uv6jy] {
    display: flex;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(87, 2, 7, 0.05);
    font-size: 0.75rem;
    font-weight: 600;
    color: #888;
}

.history-row[b-6jnc5uv6jy] {
    display: flex;
    align-items: center;
    padding: 1.2rem 0;
    position: relative;
    border-bottom: 1px dashed rgba(87, 2, 7, 0.1);
}

.history-row:last-child[b-6jnc5uv6jy] {
    border-bottom: none;
}

/* Timeline dot */
.history-row[b-6jnc5uv6jy]::before {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: white;
    border: 2px solid var(--accent-gold);
    z-index: 2;
}

.col-date[b-6jnc5uv6jy] {
    flex: 2;
    display: flex;
    flex-direction: column;
    color: var(--primary-burgundy);
}

.col-date .date-val[b-6jnc5uv6jy] {
    font-weight: 700;
    font-size: 0.9rem;
}

.col-date .time-val[b-6jnc5uv6jy] {
    font-size: 0.75rem;
    color: #888;
}

.col-metric[b-6jnc5uv6jy] {
    flex: 1.5;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    text-align: center;
}

.col-metric span[b-6jnc5uv6jy] {
    font-size: 0.75rem;
    font-weight: normal;
    color: #888;
    margin-left: 0.2rem;
}

.history-arrow[b-6jnc5uv6jy] {
    margin-left: auto;
    color: #ccc;
    font-size: 0.9rem;
}

/* Recent Activity Specific */
.activity-header[b-6jnc5uv6jy] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.activity-header h3[b-6jnc5uv6jy] {
    color: var(--primary-burgundy);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.activity-header a[b-6jnc5uv6jy] {
    color: var(--accent-gold);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.activity-list[b-6jnc5uv6jy] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.activity-item[b-6jnc5uv6jy] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px dashed rgba(87, 2, 7, 0.1);
}

.activity-item:last-child[b-6jnc5uv6jy] {
    border-bottom: none;
    padding-bottom: 0;
}

.activity-icon[b-6jnc5uv6jy] {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.activity-details[b-6jnc5uv6jy] {
    flex: 1;
}

.activity-details h4[b-6jnc5uv6jy] {
    margin: 0;
    color: var(--primary-burgundy);
    font-weight: 600;
    font-size: 0.9rem;
}

.activity-details p[b-6jnc5uv6jy] {
    margin: 0;
    color: #888;
    font-size: 0.75rem;
}

.activity-arrow[b-6jnc5uv6jy] {
    color: #ccc;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .dashboard-layout[b-6jnc5uv6jy] {
        flex-direction: column;
    }
    .growth-summary-card[b-6jnc5uv6jy] {
        flex-direction: row !important;
        gap: 0.2rem !important;
        padding: 0.8rem 0.5rem !important;
        justify-content: space-between !important;
    }
    .summary-metric[b-6jnc5uv6jy] {
        border-right: 1px solid rgba(255,255,255,0.1) !important;
        border-bottom: none !important;
        padding-bottom: 0 !important;
        width: auto !important;
        flex: 1 !important;
        padding: 0 0.1rem !important;
    }
    .summary-metric:last-child[b-6jnc5uv6jy] {
        border-right: none !important;
    }
    .metric-label[b-6jnc5uv6jy] {
        font-size: 0.5rem !important;
        white-space: nowrap;
    }
    .metric-value[b-6jnc5uv6jy] {
        font-size: 0.8rem !important;
        white-space: nowrap;
    }
    .metric-value span[b-6jnc5uv6jy] {
        font-size: 0.5rem !important;
    }
    .metric-date-value[b-6jnc5uv6jy] {
        font-size: 0.6rem !important;
        white-space: nowrap;
    }
    .metric-time-value[b-6jnc5uv6jy] {
        font-size: 0.5rem !important;
        white-space: nowrap;
    }

    /* History Timeline Single Row Fixes */
    .history-header-row[b-6jnc5uv6jy] {
        font-size: 0.55rem !important;
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: space-between !important;
    }
    .col-date .date-val[b-6jnc5uv6jy] {
        font-size: 0.65rem !important;
        white-space: nowrap;
    }
    .col-date .time-val[b-6jnc5uv6jy] {
        font-size: 0.55rem !important;
        white-space: nowrap;
    }
    .col-metric[b-6jnc5uv6jy] {
        font-size: 0.7rem !important;
        white-space: nowrap;
    }
    .col-metric span[b-6jnc5uv6jy] {
        font-size: 0.5rem !important;
    }
    .history-row[b-6jnc5uv6jy] {
        padding: 0.8rem 0 !important;
        gap: 0.2rem !important;
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: space-between !important;
    }
    .history-arrow[b-6jnc5uv6jy] {
        font-size: 0.7rem !important;
    }
}
/* /Components/Pages/Home.razor.rz.scp.css */
/* Landing Page CSS - My Baby My Life */

.landing-container[b-9085g9mj7s] {
    font-family: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    background-color: #fff;
    margin: -1rem -2rem; /* Negate padding of main container */
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
}

/* 1. Header/Navigation Bar */
.landing-header[b-9085g9mj7s] {
    background-color: #3d0104; /* Dark burgundy */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 3rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.header-logo[b-9085g9mj7s] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img[b-9085g9mj7s] {
    height: 45px;
    width: 45px;
    object-fit: cover;
    mix-blend-mode: lighten;
}

.logo-text[b-9085g9mj7s] {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
}

.header-nav[b-9085g9mj7s] {
    display: flex;
    gap: 2rem;
}

.header-nav a[b-9085g9mj7s] {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.header-nav a:hover[b-9085g9mj7s] {
    color: #fbc500; /* gold hover color */
}

.header-actions .lang-selector[b-9085g9mj7s] {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.4);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.header-actions .lang-selector:hover[b-9085g9mj7s] {
    border-color: #fbc500;
    color: #fbc500;
}

/* 2. Hero Section */
.hero-section[b-9085g9mj7s] {
    background: linear-gradient(135deg, #3d0104 0%, #1a0002 100%);
    padding: 4rem 3rem 6rem;
    position: relative;
    color: #fff;
}

.hero-content[b-9085g9mj7s] {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    gap: 4rem;
}

.hero-text-side[b-9085g9mj7s] {
    flex: 1.2;
}

.hero-image-side[b-9085g9mj7s] {
    flex: 0.8;
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-circle-glow[b-9085g9mj7s] {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(251, 197, 0, 0.25) 0%, rgba(251, 197, 0, 0) 70%);
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-illustration[b-9085g9mj7s] {
    width: 280px;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}

.hero-title[b-9085g9mj7s] {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-title .highlight[b-9085g9mj7s] {
    color: #fbc500;
}

.hero-title .bi-heart[b-9085g9mj7s] {
    font-size: 2.2rem;
    -webkit-text-stroke: 2px #fbc500;
}

.hero-subtitle[b-9085g9mj7s] {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* Hero Feature List */
.features-list[b-9085g9mj7s] {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.features-list li[b-9085g9mj7s] {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon[b-9085g9mj7s] {
    width: 42px;
    height: 42px;
    background-color: rgba(251, 197, 0, 0.15);
    color: #fbc500;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature-text h3[b-9085g9mj7s] {
    margin: 0 0 0.25rem 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
}

.feature-text p[b-9085g9mj7s] {
    margin: 0;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.4;
}

.hero-buttons[b-9085g9mj7s] {
    display: flex;
    gap: 1.5rem;
}

.btn-primary-landing[b-9085g9mj7s] {
    background-color: #fbc500;
    color: #3d0104;
    padding: 0.9rem 2rem;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(251, 197, 0, 0.3);
    transition: all 0.2s;
    font-size: 0.95rem;
}

.btn-primary-landing:hover[b-9085g9mj7s] {
    background-color: #ffe054;
    transform: translateY(-2px);
}

.btn-secondary-landing[b-9085g9mj7s] {
    background-color: transparent;
    color: #fff;
    padding: 0.9rem 2rem;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.4);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
    font-size: 0.95rem;
}

.btn-secondary-landing:hover[b-9085g9mj7s] {
    border-color: #fff;
    background-color: rgba(255,255,255,0.08);
    transform: translateY(-2px);
}

/* 3. Sub-Hero Badges Section */
.hero-badges-container[b-9085g9mj7s] {
    position: absolute;
    bottom: -3.5rem;
    left: 3rem;
    right: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    z-index: 5;
}

.badge-card[b-9085g9mj7s] {
    background-color: #fff;
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(87, 2, 7, 0.05);
}

.badge-icon[b-9085g9mj7s] {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #fef7f0;
    color: #870207;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.badge-card:nth-child(2) .badge-icon[b-9085g9mj7s] { color: #d4a017; background-color: #fffbeb; }
.badge-card:nth-child(3) .badge-icon[b-9085g9mj7s] { color: #2e7d32; background-color: #e8f5e9; }
.badge-card:nth-child(4) .badge-icon[b-9085g9mj7s] { color: #f57c00; background-color: #fff3e0; }

.badge-info h4[b-9085g9mj7s] {
    margin: 0 0 0.2rem 0;
    font-size: 0.9rem;
    font-weight: 700;
    color: #3d0104;
}

.badge-info p[b-9085g9mj7s] {
    margin: 0;
    font-size: 0.75rem;
    color: #666;
    line-height: 1.3;
}

/* 4. Features Section */
.features-section-container[b-9085g9mj7s] {
    padding: 8rem 3rem 4rem;
    background-color: #fefcf9;
    text-align: center;
}

.section-badge[b-9085g9mj7s] {
    color: #fbc500;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.section-title[b-9085g9mj7s] {
    color: #3d0104;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.section-subtitle[b-9085g9mj7s] {
    color: #666;
    font-size: 1rem;
    margin-bottom: 4rem;
}

.mockups-grid[b-9085g9mj7s] {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.mockup-card-wrapper[b-9085g9mj7s] {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mockup-device-card[b-9085g9mj7s] {
    background-color: #fff;
    border-radius: 16px;
    padding: 0.75rem;
    width: 100%;
    min-height: 170px;
    box-shadow: 0 4px 15px rgba(87, 2, 7, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s;
    text-align: left;
}

.mockup-device-card:hover[b-9085g9mj7s] {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(87, 2, 7, 0.08);
}

/* Device Borders */
.border-feed[b-9085g9mj7s] { border: 1.5px solid rgba(135, 2, 7, 0.15); }
.border-diaper[b-9085g9mj7s] { border: 1.5px solid rgba(230, 138, 0, 0.15); }
.border-sleep[b-9085g9mj7s] { border: 1.5px solid rgba(130, 50, 200, 0.15); }
.border-potty[b-9085g9mj7s] { border: 1.5px solid rgba(46, 125, 50, 0.15); }
.border-medicine[b-9085g9mj7s] { border: 1.5px solid rgba(229, 57, 53, 0.15); }
.border-growth[b-9085g9mj7s] { border: 1.5px solid rgba(0, 150, 136, 0.15); }

/* Text colors */
.text-feed[b-9085g9mj7s] { color: #870207; }
.text-diaper[b-9085g9mj7s] { color: #e68a00; }
.text-sleep[b-9085g9mj7s] { color: #8232c8; }
.text-potty[b-9085g9mj7s] { color: #2e7d32; }
.text-medicine[b-9085g9mj7s] { color: #e53935; }
.text-growth[b-9085g9mj7s] { color: #009688; }

/* Background colors */
.bg-feed[b-9085g9mj7s] { background-color: #870207; }
.bg-diaper[b-9085g9mj7s] { background-color: #e68a00; }
.bg-sleep[b-9085g9mj7s] { background-color: #8232c8; }
.bg-potty[b-9085g9mj7s] { background-color: #2e7d32; }
.bg-medicine[b-9085g9mj7s] { background-color: #e53935; }
.bg-growth[b-9085g9mj7s] { background-color: #009688; }

.device-header[b-9085g9mj7s] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    border-bottom: 1px solid #f2f2f2;
    padding-bottom: 0.4rem;
    margin-bottom: 0.5rem;
}

.device-header h4[b-9085g9mj7s] {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 700;
    color: #333;
}

.device-header span[b-9085g9mj7s] {
    font-size: 1rem;
}

.device-body[b-9085g9mj7s] {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.record-item[b-9085g9mj7s] {
    display: flex;
    align-items: center;
    margin-bottom: 0.4rem;
}

.record-item h5[b-9085g9mj7s] {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 600;
    color: #444;
}

.record-item p[b-9085g9mj7s] {
    margin: 0;
    font-size: 0.65rem;
    color: #888;
}

.record-item-row[b-9085g9mj7s] {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.3rem;
}

.record-item-row h5[b-9085g9mj7s] {
    margin: 0;
    font-size: 0.72rem;
    font-weight: 700;
    color: #444;
}

.record-item-row p[b-9085g9mj7s] {
    margin: 0;
    font-size: 0.62rem;
    color: #888;
}

.diaper-pill-row[b-9085g9mj7s] {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0.4rem;
}

.diaper-pill[b-9085g9mj7s] {
    font-size: 0.6rem;
    padding: 0.15rem 0.4rem;
    border-radius: 8px;
    font-weight: 600;
}

.bg-warning-light[b-9085g9mj7s] { background-color: #fff8e1; }
.bg-danger-light[b-9085g9mj7s] { background-color: #ffebee; }
.bg-success-light[b-9085g9mj7s] { background-color: #e8f5e9; }

.sleep-summary[b-9085g9mj7s] {
    display: flex;
    justify-content: space-between;
    background-color: #fafafa;
    padding: 0.25rem 0.4rem;
    border-radius: 6px;
    font-size: 0.65rem;
    margin-bottom: 0.4rem;
    align-items: center;
}

.sleep-summary .label[b-9085g9mj7s] {
    color: #666;
}

.sleep-summary .val[b-9085g9mj7s] {
    font-weight: 700;
}

.growth-metric-row[b-9085g9mj7s] {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    border-bottom: 1px dashed #eee;
    padding-bottom: 0.2rem;
}

.growth-metric-row strong[b-9085g9mj7s] {
    color: #333;
}

.mockup-btn[b-9085g9mj7s] {
    width: 100%;
    border: none;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.35rem 0;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
}

.mockup-desc[b-9085g9mj7s] {
    margin-top: 0.75rem;
    font-size: 0.75rem;
    color: #666;
    line-height: 1.4;
}

.explore-all-row[b-9085g9mj7s] {
    margin-top: 1.5rem;
}

.btn-explore-features[b-9085g9mj7s] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #3d0104;
    font-weight: 700;
    border: 1px solid rgba(87, 2, 7, 0.15);
    padding: 0.7rem 1.75rem;
    border-radius: 25px;
    transition: all 0.2s;
    font-size: 0.9rem;
    background-color: #fff;
}

.btn-explore-features:hover[b-9085g9mj7s] {
    border-color: #fbc500;
    background-color: #fefcf9;
    color: #fbc500;
    transform: translateY(-2px);
}

/* 5. How It Works Section */
.how-it-works-section[b-9085g9mj7s] {
    background-color: #3d0104;
    color: #fff;
    padding: 5rem 3rem;
    text-align: center;
}

.section-badge-light[b-9085g9mj7s] {
    color: #fbc500;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.section-title-light[b-9085g9mj7s] {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.section-subtitle-light[b-9085g9mj7s] {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    margin-bottom: 4rem;
}

.steps-row[b-9085g9mj7s] {
    display: flex;
    justify-content: space-around;
    max-width: 1000px;
    margin: 0 auto;
    gap: 3rem;
    position: relative;
}

/* Connective lines for steps on desktop */
.steps-row[b-9085g9mj7s]::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 15%;
    right: 15%;
    height: 2px;
    border-top: 2px dashed rgba(251, 197, 0, 0.3);
    z-index: 1;
}

.step-card[b-9085g9mj7s] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step-icon-wrapper[b-9085g9mj7s] {
    width: 100px;
    height: 100px;
    background-color: #4b0005;
    border: 3px solid #fbc500;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #fbc500;
    margin-bottom: 1.5rem;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.step-number[b-9085g9mj7s] {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 28px;
    height: 28px;
    background-color: #fbc500;
    color: #3d0104;
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #3d0104;
}

.step-card h3[b-9085g9mj7s] {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.5rem 0;
}

.step-card p[b-9085g9mj7s] {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
    margin: 0;
    max-width: 250px;
}

/* 6. Testimonials Section */
.testimonials-section[b-9085g9mj7s] {
    padding: 5rem 3rem;
    background-color: #fff;
    text-align: center;
}

.testimonials-grid[b-9085g9mj7s] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card[b-9085g9mj7s] {
    background-color: #fefcf9;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(87, 2, 7, 0.03);
    border: 1px solid rgba(87, 2, 7, 0.04);
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stars[b-9085g9mj7s] {
    color: #fbc500;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.testimonial-text[b-9085g9mj7s] {
    font-style: italic;
    color: #444;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-author[b-9085g9mj7s] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img[b-9085g9mj7s] {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4[b-9085g9mj7s] {
    margin: 0 0 0.15rem 0;
    font-size: 0.85rem;
    font-weight: 700;
    color: #3d0104;
}

.testimonial-author p[b-9085g9mj7s] {
    margin: 0;
    font-size: 0.75rem;
    color: #888;
}

/* 7. Download Section */
.download-section[b-9085g9mj7s] {
    background-color: #fefcf9;
    padding: 4rem 3rem;
}

.download-container[b-9085g9mj7s] {
    max-width: 1000px;
    background-color: #3d0104;
    border-radius: 24px;
    margin: 0 auto;
    padding: 3rem;
    display: flex;
    align-items: center;
    gap: 4rem;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.download-left[b-9085g9mj7s] {
    flex: 1;
    display: flex;
    justify-content: center;
}

.download-right[b-9085g9mj7s] {
    flex: 1.2;
}

.download-right h2[b-9085g9mj7s] {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.gold-text[b-9085g9mj7s] {
    color: #fbc500;
}

.download-right p[b-9085g9mj7s] {
    color: rgba(255,255,255,0.75);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.download-badges[b-9085g9mj7s] {
    display: flex;
    gap: 1rem;
}

.store-badge img[b-9085g9mj7s] {
    height: 42px;
    width: auto;
    transition: transform 0.2s;
}

.store-badge:hover img[b-9085g9mj7s] {
    transform: scale(1.05);
}

/* Mock Phone Frame */
.mockup-phone-frame[b-9085g9mj7s] {
    width: 200px;
    height: 380px;
    background-color: #111;
    border: 8px solid #222;
    border-radius: 28px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    overflow: hidden;
    position: relative;
}

.phone-screen-content[b-9085g9mj7s] {
    background-color: #3d0104;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
    color: #fff;
    text-align: center;
}

.phone-logo[b-9085g9mj7s] {
    height: 50px;
    width: 50px;
    object-fit: cover;
    mix-blend-mode: lighten;
    margin-bottom: 1rem;
}

.phone-app-title[b-9085g9mj7s] {
    margin: 0 0 0.25rem 0;
    font-size: 0.85rem;
    font-weight: 700;
}

.phone-tagline[b-9085g9mj7s] {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 2rem;
}

.phone-mock-graph[b-9085g9mj7s] {
    width: 80%;
    height: 100px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 12px;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    padding: 0.5rem;
}

.phone-mock-graph .bar[b-9085g9mj7s] {
    width: 15px;
    background-color: #fbc500;
    border-radius: 4px 4px 0 0;
}

/* 8. Footer */
.landing-footer[b-9085g9mj7s] {
    background-color: #1a0002;
    color: #fff;
    padding: 4rem 3rem 2rem;
}

.footer-top[b-9085g9mj7s] {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
    gap: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 3rem;
    margin-bottom: 2rem;
}

.footer-brand-info .footer-logo[b-9085g9mj7s] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.footer-logo img[b-9085g9mj7s] {
    height: 40px;
    width: 40px;
    object-fit: cover;
    mix-blend-mode: lighten;
}

.footer-logo span[b-9085g9mj7s] {
    font-size: 1.15rem;
    font-weight: 700;
}

.brand-desc[b-9085g9mj7s] {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

.footer-links-col h4[b-9085g9mj7s] {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 1.25rem 0;
    color: #fbc500;
}

.footer-links-col a[b-9085g9mj7s] {
    display: block;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    transition: color 0.2s;
}

.footer-links-col a:hover[b-9085g9mj7s] {
    color: #fff;
}

.social-links[b-9085g9mj7s] {
    display: flex;
    gap: 1rem;
}

.social-links a[b-9085g9mj7s] {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    transition: all 0.2s;
}

.social-links a:hover[b-9085g9mj7s] {
    background-color: #fbc500;
    color: #3d0104;
    transform: translateY(-2px);
}

.footer-links-col.wide p[b-9085g9mj7s] {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1.25rem;
    line-height: 1.4;
}

.newsletter-form[b-9085g9mj7s] {
    display: flex;
}

.newsletter-form input[b-9085g9mj7s] {
    flex: 1;
    background-color: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px 0 0 20px;
    padding: 0.6rem 1rem;
    color: #fff;
    font-size: 0.85rem;
    outline: none;
}

.newsletter-form button[b-9085g9mj7s] {
    background-color: #fbc500;
    border: none;
    padding: 0 1.25rem;
    border-radius: 0 20px 20px 0;
    color: #3d0104;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background-color 0.2s;
}

.newsletter-form button:hover[b-9085g9mj7s] {
    background-color: #ffe054;
}

.footer-bottom[b-9085g9mj7s] {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    color: rgba(255,255,255,0.45);
    font-size: 0.8rem;
}

.footer-bottom p[b-9085g9mj7s] {
    margin: 0;
}

/* RESPONSIVENESS OVERRIDES */
@media (max-width: 1200px) {
    .mockups-grid[b-9085g9mj7s] {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    .landing-header[b-9085g9mj7s] {
        padding: 1rem 2rem;
    }
    
    .header-nav[b-9085g9mj7s] {
        display: none; /* Hide nav links on mobile/tablet */
    }
    
    .hero-content[b-9085g9mj7s] {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-text-side[b-9085g9mj7s] {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-title[b-9085g9mj7s] {
        font-size: 2.8rem;
    }
    
    .features-list[b-9085g9mj7s] {
        grid-template-columns: 1fr;
        max-width: 400px;
        text-align: left;
    }
    
    .hero-badges-container[b-9085g9mj7s] {
        position: static;
        margin-top: 3rem;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-row[b-9085g9mj7s] {
        flex-direction: column;
        gap: 3rem;
    }
    
    .steps-row[b-9085g9mj7s]::before {
        display: none;
    }
    
    .testimonials-grid[b-9085g9mj7s] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .download-container[b-9085g9mj7s] {
        flex-direction: column;
        padding: 2.5rem;
        gap: 2.5rem;
        text-align: center;
    }
    
    .download-badges[b-9085g9mj7s] {
        justify-content: center;
    }
    
    .footer-top[b-9085g9mj7s] {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-brand-info[b-9085g9mj7s],
    .footer-links-col.wide[b-9085g9mj7s] {
        grid-column: span 2;
    }
}

@media (max-width: 640px) {
    .landing-header[b-9085g9mj7s] {
        padding: 1rem;
    }
    
    .hero-title[b-9085g9mj7s] {
        font-size: 2.2rem;
    }
    
    .hero-buttons[b-9085g9mj7s] {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary-landing[b-9085g9mj7s],
    .btn-secondary-landing[b-9085g9mj7s] {
        width: 100%;
        justify-content: center;
    }
    
    .hero-badges-container[b-9085g9mj7s] {
        grid-template-columns: 1fr;
    }
    
    .mockups-grid[b-9085g9mj7s] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .section-title[b-9085g9mj7s] {
        font-size: 1.8rem;
    }
    
    .footer-top[b-9085g9mj7s] {
        grid-template-columns: 1fr;
    }
    
    .footer-brand-info[b-9085g9mj7s],
    .footer-links-col.wide[b-9085g9mj7s] {
        grid-column: span 1;
    }
}
/* /Components/Pages/Login.razor.rz.scp.css */
/* =============================================
   LOGIN PAGE - Blazor CSS
   Mirrors MAUI LoginPage.xaml design exactly:
   - Dark red (#8B0000) background
   - Baby icon + "My Baby My Life" title
   - Heart dividers ♥
   - White glass card
   - Golden login button
   ============================================= */

/* === PAGE WRAPPER === */
.login-page[b-bn2ivty06v] {
    position: relative;
    min-height: 100vh;
    width: 100%;
    background-color: #8B0000;
    overflow: hidden;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

/* Background SVG overlay */
.login-bg-overlay[b-bn2ivty06v] {
    position: absolute;
    inset: 0;
    background-image: url('/dashboard_background.svg');
    background-size: cover;
    background-position: center;
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}

/* === SCROLL CONTAINER === */
.login-scroll-container[b-bn2ivty06v] {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    overflow-y: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 16px 40px;
}

/* === MAIN LAYOUT === */
.login-main-layout[b-bn2ivty06v] {
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* =============================================
   TOP SECTION: Baby Icon + Title
   ============================================= */
.welcome-container[b-bn2ivty06v] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.baby-icon[b-bn2ivty06v] {
    width: 100px;
    height: 100px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
    animation: float-b-bn2ivty06v 3s ease-in-out infinite;
}

@keyframes float-b-bn2ivty06v {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.welcome-title[b-bn2ivty06v] {
    font-size: 26px;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: 0.5px;
    text-align: center;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* Heart Divider */
.heart-divider[b-bn2ivty06v] {
    display: flex;
    align-items: center;
    width: 200px;
    gap: 8px;
    margin-top: 4px;
}

.divider-line[b-bn2ivty06v] {
    flex: 1;
    height: 1px;
    background: rgba(236, 160, 35, 0.7);
}

.divider-heart[b-bn2ivty06v] {
    color: #ECA023;
    font-size: 16px;
    line-height: 1;
}

/* =============================================
   WHITE LOGIN CARD
   ============================================= */
.login-card[b-bn2ivty06v] {
    width: 100%;
    background: rgba(255, 255, 255, 0.97);
    border-radius: 20px;
    padding: 24px 20px 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35), 0 4px 16px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Card Header Row */
.card-header-row[b-bn2ivty06v] {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
}

.user-icon-border[b-bn2ivty06v] {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8B0000, #C0392B);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(139,0,0,0.3);
}

.user-icon-grid[b-bn2ivty06v] {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-icon-image[b-bn2ivty06v] {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: brightness(10);
}

.header-title-stack[b-bn2ivty06v] {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.welcome-back-header[b-bn2ivty06v] {
    font-size: 18px;
    font-weight: 700;
    color: #8B0000;
    letter-spacing: 0.3px;
}

.sub-header[b-bn2ivty06v] {
    font-size: 13px;
    color: #888;
    font-weight: 400;
}

/* Card Heart Divider */
.card-heart-divider[b-bn2ivty06v] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-divider-line[b-bn2ivty06v] {
    flex: 1;
    height: 1px;
    background: rgba(139,0,0,0.15);
}

.card-divider-heart[b-bn2ivty06v] {
    color: #ECA023;
    font-size: 14px;
    line-height: 1;
}

/* =============================================
   INPUT FIELDS
   ============================================= */
.input-card[b-bn2ivty06v] {
    background: rgba(139, 0, 0, 0.04);
    border: 1.5px solid rgba(139, 0, 0, 0.12);
    border-radius: 14px;
    padding: 12px 14px;
    transition: all 0.2s ease;
}

.input-card:focus-within[b-bn2ivty06v] {
    border-color: rgba(139, 0, 0, 0.5);
    background: rgba(139, 0, 0, 0.06);
    box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.08);
}

.input-card.input-error[b-bn2ivty06v] {
    border-color: #e74c3c;
    background: rgba(231, 76, 60, 0.05);
}



.input-grid[b-bn2ivty06v] {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 10px;
    align-items: center;
}

.input-grid-otp[b-bn2ivty06v] {
    display: grid;
    grid-template-columns: 42px 1fr auto;
    gap: 10px;
    align-items: center;
}

.input-icon-border[b-bn2ivty06v] {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, #8B0000, #C0392B);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(139,0,0,0.25);
}

.input-icon-image[b-bn2ivty06v] {
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: brightness(10);
}

.input-title-stack[b-bn2ivty06v] {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.input-header-label[b-bn2ivty06v] {
    font-size: 11px;
    font-weight: 600;
    color: #8B0000;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.input-entry[b-bn2ivty06v] {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 15px;
    color: #2c2c2c;
    font-weight: 500;
    outline: none;
    padding: 2px 0;
    font-family: inherit;
}

.input-entry[b-bn2ivty06v]::placeholder {
    color: #8c8c8c;
    font-weight: 400;
    font-size: 14px;
}

/* Hide number input arrows */
.input-entry[type="number"][b-bn2ivty06v]::-webkit-outer-spin-button,
.input-entry[type="number"][b-bn2ivty06v]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* OTP Action */
.action-stack[b-bn2ivty06v] {
    display: flex;
    align-items: center;
}

.send-otp-label[b-bn2ivty06v] {
    font-size: 12px;
    font-weight: 700;
    color: #FFFFFF;
    background: linear-gradient(135deg, #ECA023, #D4890A);
    cursor: pointer;
    white-space: nowrap;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all 0.2s ease;
    user-select: none;
    box-shadow: 0 2px 6px rgba(236, 160, 35, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.send-otp-label:hover[b-bn2ivty06v] {
    background: linear-gradient(135deg, #D4890A, #c7851a);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(236, 160, 35, 0.4);
}

.send-otp-label.otp-link-disabled[b-bn2ivty06v] {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Error and Success Messages */
.error-message[b-bn2ivty06v] {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.3);
    border-radius: 10px;
    padding: 10px 14px;
    color: #c0392b;
    font-size: 13px;
    font-weight: 500;
}

.success-message[b-bn2ivty06v] {
    background: rgba(39, 174, 96, 0.1);
    border: 1px solid rgba(39, 174, 96, 0.3);
    border-radius: 10px;
    padding: 10px 14px;
    color: #27ae60;
    font-size: 13px;
    font-weight: 500;
}

/* =============================================
   GOLDEN LOGIN BUTTON
   ============================================= */
.login-button[b-bn2ivty06v] {
    width: 100%;
    height: 54px;
    background: linear-gradient(135deg, #ECA023, #D4890A, #F5B942);
    border: none;
    border-radius: 16px;
    font-size: 17px;
    font-weight: 700;
    color: #FFFFFF;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 24px rgba(236, 160, 35, 0.45), 0 3px 8px rgba(0,0,0,0.2);
    transition: all 0.2s ease;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.login-button[b-bn2ivty06v]::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.4s ease;
}

.login-button:hover[b-bn2ivty06v]::before {
    left: 100%;
}

.login-button:hover:not(:disabled)[b-bn2ivty06v] {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(236, 160, 35, 0.55);
}

.login-button:active:not(:disabled)[b-bn2ivty06v] {
    transform: translateY(0);
}

.login-button:disabled[b-bn2ivty06v] {
    opacity: 0.8;
    cursor: not-allowed;
}

/* Button spinner */
.btn-spinner[b-bn2ivty06v] {
    width: 18px;
    height: 18px;
    border: 2.5px solid rgba(255,255,255,0.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin-b-bn2ivty06v 0.8s linear infinite;
    flex-shrink: 0;
}

/* =============================================
   SECURITY NOTE
   ============================================= */
.security-note-grid[b-bn2ivty06v] {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 10px 16px;
    border: 1px solid rgba(255,255,255,0.15);
}

.security-icon-border[b-bn2ivty06v] {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.security-icon-image[b-bn2ivty06v] {
    width: 16px;
    height: 16px;
    object-fit: contain;
    filter: brightness(10);
    opacity: 0.85;
}

.security-note-text-stack[b-bn2ivty06v] {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.security-note-header[b-bn2ivty06v] {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.95);
}

.security-note-sub[b-bn2ivty06v] {
    font-size: 11px;
    color: rgba(255,255,255,0.65);
}

/* =============================================
   SIGN UP LINK
   ============================================= */
.signup-grid[b-bn2ivty06v] {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.signup-label[b-bn2ivty06v] {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
}

.signup-link[b-bn2ivty06v] {
    font-size: 14px;
    font-weight: 700;
    color: #ECA023;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s;
}

.signup-link:hover[b-bn2ivty06v] {
    color: #F5B942;
}

/* =============================================
   LOADING OVERLAY
   ============================================= */
.loading-overlay[b-bn2ivty06v] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    backdrop-filter: blur(4px);
}

.loading-content[b-bn2ivty06v] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.loading-spinner[b-bn2ivty06v] {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(236, 160, 35, 0.3);
    border-top-color: #ECA023;
    border-radius: 50%;
    animation: spin-b-bn2ivty06v 0.8s linear infinite;
}

.loading-text[b-bn2ivty06v] {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

@keyframes spin-b-bn2ivty06v {
    to { transform: rotate(360deg); }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 480px) {
    .welcome-title[b-bn2ivty06v] {
        font-size: 22px;
    }

    .baby-icon[b-bn2ivty06v] {
        width: 80px;
        height: 80px;
    }

    .login-card[b-bn2ivty06v] {
        padding: 20px 16px 16px;
    }

    .login-main-layout[b-bn2ivty06v] {
        gap: 16px;
    }
}
/* /Components/Pages/Medicine.razor.rz.scp.css */
/* Medicine Tracker Specific Styles */

/* Added classes for new UI match */
.bg-red[b-xvwjgmxmoe] { background-color: #ff758c; }
.bg-yellow[b-xvwjgmxmoe] { background-color: #ffb703; }
.bg-blue[b-xvwjgmxmoe] { background-color: #6495ed; }
.bg-purple[b-xvwjgmxmoe] { background-color: #b19cd9; }

.section-header-floating[b-xvwjgmxmoe] {
    margin-top: 1.5rem;
    padding: 0 0.5rem;
}

.dropdown-badge[b-xvwjgmxmoe] {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
}

.dashboard-layout[b-xvwjgmxmoe] {
    display: flex;
    gap: 1rem;
}

.left-column[b-xvwjgmxmoe] {
    flex: 7;
    display: flex;
    flex-direction: column;
    gap: 0.5rem; /* Reduced gap since cards now have floating headers */
    justify-content: flex-start;
}

.right-column[b-xvwjgmxmoe] {
    flex: 3;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: flex-start;
    position: sticky;
    top: 0;
    height: max-content;
}

/* Header Area */
.medicine-header-container[b-xvwjgmxmoe] {
    background-color: #4b0005; /* Dark Burgundy */
    border-radius: 15px;
    padding: 1.5rem;
    color: white;
    margin-bottom: 0.5rem;
    position: relative;
    overflow: hidden;
}

.medicine-header-container h1[b-xvwjgmxmoe] {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.medicine-header-container p[b-xvwjgmxmoe] {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Section Header styling within dash-cards */
.dash-card[b-xvwjgmxmoe] {
    background-color: white;
    border-radius: 15px;
    padding: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.card-title-row[b-xvwjgmxmoe] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
}

.card-title-row h3[b-xvwjgmxmoe] {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-burgundy);
}

.card-title-row .icon[b-xvwjgmxmoe] {
    color: var(--primary-burgundy);
    font-size: 1.2rem;
}

/* Medicine List */
.medicine-list[b-xvwjgmxmoe] {
    display: flex;
    flex-direction: column;
    gap: 0; /* Items have borders */
}

.medicine-item[b-xvwjgmxmoe] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(87, 2, 7, 0.05);
    cursor: pointer;
}

.medicine-item:last-child[b-xvwjgmxmoe] {
    border-bottom: none;
}

.med-icon[b-xvwjgmxmoe] {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.med-icon.red[b-xvwjgmxmoe] { background-color: #ff758c; }
.med-icon.yellow[b-xvwjgmxmoe] { background-color: #ffb703; }
.med-icon.blue[b-xvwjgmxmoe] { background-color: #6495ed; }
.med-icon.purple[b-xvwjgmxmoe] { background-color: #b19cd9; }

.med-details[b-xvwjgmxmoe] {
    flex: 1;
}

.med-details h4[b-xvwjgmxmoe] {
    margin: 0;
    color: var(--primary-burgundy);
    font-size: 1rem;
    font-weight: 700;
}

.med-details p[b-xvwjgmxmoe] {
    margin: 0;
    color: #666;
    font-size: 0.8rem;
    line-height: 1.4;
}

.med-action[b-xvwjgmxmoe] {
    color: #333;
}

/* Today's Doses */
.dose-item[b-xvwjgmxmoe] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(87, 2, 7, 0.05);
}

.dose-item:last-child[b-xvwjgmxmoe] {
    border-bottom: none;
}

.dose-details[b-xvwjgmxmoe] {
    flex: 1;
}

.dose-details h4[b-xvwjgmxmoe] {
    margin: 0;
    color: var(--primary-burgundy);
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dose-badge[b-xvwjgmxmoe] {
    font-size: 0.7rem;
    color: #e53935;
    font-weight: 600;
}

.dose-details p[b-xvwjgmxmoe] {
    margin: 0;
    color: #888;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.status-badge[b-xvwjgmxmoe] {
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    text-align: center;
}

.status-badge.given[b-xvwjgmxmoe] {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.status-badge.pending[b-xvwjgmxmoe] {
    background-color: transparent;
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
}

.status-time[b-xvwjgmxmoe] {
    display: block;
    text-align: right;
    font-size: 0.75rem;
    color: #2e7d32;
    font-weight: 700;
    margin-top: 0.2rem;
}

.alert-box[b-xvwjgmxmoe] {
    background-color: #fff9e6;
    border-radius: 10px;
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #856404;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.alert-box i[b-xvwjgmxmoe] {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

/* Add Medicine Button & Form */
.btn-add-med[b-xvwjgmxmoe] {
    background-color: var(--accent-gold);
    color: var(--primary-burgundy);
    border: none;
    border-radius: 10px;
    padding: 0.8rem 1.5rem;
    font-weight: 700;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.add-med-form[b-xvwjgmxmoe] {
    background-color: #fcfcfc;
    border: 1px solid rgba(87, 2, 7, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.form-label[b-xvwjgmxmoe] {
    font-size: 0.8rem;
    color: var(--primary-burgundy);
    font-weight: 700;
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.form-label i[b-xvwjgmxmoe] {
    color: var(--primary-burgundy);
}

.input-box[b-xvwjgmxmoe] {
    background-color: #fff;
    border: 1px solid rgba(87, 2, 7, 0.1);
    border-radius: 10px;
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    position: relative;
    margin-bottom: 1.2rem;
    color: var(--primary-burgundy);
}

.input-box input[b-xvwjgmxmoe], .input-box select[b-xvwjgmxmoe], .input-box textarea[b-xvwjgmxmoe] {
    border: none;
    background: transparent;
    width: 100%;
    outline: none;
    color: var(--primary-burgundy);
    font-size: 0.9rem;
}

.input-box input[b-xvwjgmxmoe]::placeholder, .input-box textarea[b-xvwjgmxmoe]::placeholder {
    color: #aaa;
}

.input-box.disabled[b-xvwjgmxmoe] {
    background-color: #f5f5f5;
    color: #888;
}

/* Route Pills */
.route-grid[b-xvwjgmxmoe] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-bottom: 1.2rem;
}

.route-pill[b-xvwjgmxmoe] {
    border: 1px solid rgba(87, 2, 7, 0.1);
    border-radius: 20px;
    padding: 0.6rem 0.2rem;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-burgundy);
    background-color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    transition: all 0.2s;
}

.route-pill.active[b-xvwjgmxmoe] {
    background-color: #fff9e6;
    border-color: var(--accent-gold);
}

/* Recent Activity specific */
.activity-header[b-xvwjgmxmoe] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.activity-header h3[b-xvwjgmxmoe] {
    color: var(--primary-burgundy);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.activity-header a[b-xvwjgmxmoe] {
    color: var(--accent-gold);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.activity-list[b-xvwjgmxmoe] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.activity-item[b-xvwjgmxmoe] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px dashed rgba(87, 2, 7, 0.1);
}

.activity-item:last-child[b-xvwjgmxmoe] {
    border-bottom: none;
    padding-bottom: 0;
}

.activity-icon[b-xvwjgmxmoe] {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.activity-details[b-xvwjgmxmoe] {
    flex: 1;
}

.activity-details h4[b-xvwjgmxmoe] {
    margin: 0;
    color: var(--primary-burgundy);
    font-weight: 600;
    font-size: 0.9rem;
}

.activity-details p[b-xvwjgmxmoe] {
    margin: 0;
    color: #888;
    font-size: 0.75rem;
}

.activity-arrow[b-xvwjgmxmoe] {
    color: #ccc;
    font-size: 0.8rem;
}

/* Date Dropdown override */
.date-dropdown[b-xvwjgmxmoe] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--primary-burgundy);
    font-weight: 600;
    border: 1px solid rgba(87, 2, 7, 0.1);
    padding: 0.3rem 0.6rem;
    border-radius: 8px;
    cursor: pointer;
}

/* History Timeline Section (Matching Growth History design) */
.history-timeline[b-xvwjgmxmoe] {
    position: relative;
    padding-left: 1.5rem;
    margin-top: 1rem;
}

.history-timeline[b-xvwjgmxmoe]::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background-color: var(--accent-gold);
}

.history-header-row[b-xvwjgmxmoe] {
    display: flex;
    align-items: center;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(87, 2, 7, 0.08);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-burgundy);
}

.history-row[b-xvwjgmxmoe] {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    position: relative;
    border-bottom: 1px dashed rgba(87, 2, 7, 0.1);
}

.history-row:last-child[b-xvwjgmxmoe] {
    border-bottom: none;
}

.history-row[b-xvwjgmxmoe]::before {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: white;
    border: 2px solid var(--accent-gold);
    z-index: 2;
}

.col-date[b-xvwjgmxmoe] {
    flex: 2.2;
    display: flex;
    flex-direction: column;
    color: var(--primary-burgundy);
}

.col-date .date-val[b-xvwjgmxmoe] {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--primary-burgundy);
}

.col-date .time-val[b-xvwjgmxmoe] {
    font-size: 0.75rem;
    color: #888;
}

.col-med-name[b-xvwjgmxmoe] {
    flex: 2;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-burgundy);
}

.col-med-dose[b-xvwjgmxmoe] {
    flex: 2;
    font-size: 0.85rem;
    font-weight: 500;
    color: #555;
}

.col-med-route[b-xvwjgmxmoe] {
    flex: 2;
    font-size: 0.85rem;
    color: #777;
}

@media (max-width: 768px) {
    .dashboard-layout[b-xvwjgmxmoe] {
        flex-direction: column;
    }
    
    .route-grid[b-xvwjgmxmoe] {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Reduce title and subtitle sizes to fit in single row */
    .medicine-header-container h1[b-xvwjgmxmoe] {
        font-size: 1.4rem;
    }
    
    .medicine-header-container p[b-xvwjgmxmoe] {
        font-size: 0.8rem;
        white-space: nowrap; 
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* Ensure flex-between headers don't wrap and look equal/opposite */
    .card-title-row[b-xvwjgmxmoe] {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
    }

    .card-title-row h3[b-xvwjgmxmoe] {
        font-size: 0.95rem !important;
        margin: 0 !important;
    }

    .date-dropdown[b-xvwjgmxmoe], .view-all-link[b-xvwjgmxmoe] {
        white-space: nowrap !important;
        font-size: 0.75rem !important;
        margin: 0 !important;
    }

    /* Make sure "Can't find your medicine" fits nicely */
    .cant-find-card[b-xvwjgmxmoe] {
        padding: 0.8rem !important;
        flex-direction: column;
        align-items: stretch !important;
        gap: 0.8rem !important;
    }

    .cant-find-card h4[b-xvwjgmxmoe] {
        font-size: 0.85rem !important;
    }

    .cant-find-card p[b-xvwjgmxmoe] {
        font-size: 0.75rem !important;
    }

    .cant-find-card button[b-xvwjgmxmoe] {
        padding: 0.4rem 0.8rem !important;
        font-size: 0.85rem !important;
    }

    /* Fix banner text on one line */
    .footer-banner[b-xvwjgmxmoe] {
        padding: 0.8rem !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .footer-banner span[b-xvwjgmxmoe] {
        font-size: 0.75rem !important;
        white-space: nowrap;
    }
}
/* /Components/Pages/Reports.razor.rz.scp.css */
.dashboard-layout[b-lvlbagj5t4] {
    display: flex;
    gap: 1rem;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.left-column[b-lvlbagj5t4] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
}

/* Header Section */
.dashboard-header[b-lvlbagj5t4] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    padding: 0.5rem 0;
}

.header-icon-circle[b-lvlbagj5t4] {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--primary-burgundy);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(87, 2, 7, 0.15);
}

.greeting h1[b-lvlbagj5t4] {
    color: var(--primary-burgundy);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 0;
}

.greeting p[b-lvlbagj5t4] {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.age-badge[b-lvlbagj5t4] {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #c0915a;
    font-size: 0.85rem;
    background-color: transparent;
}

/* Main Content Card */
.main-content-card[b-lvlbagj5t4] {
    background-color: #fdf6ef;
    border: 1px solid rgba(87, 2, 7, 0.08);
    border-radius: 18px;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(87, 2, 7, 0.04);
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

/* Category Tabs */
.feed-tabs[b-lvlbagj5t4] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    background-color: var(--primary-burgundy);
    padding: 0.5rem;
    border-radius: 16px;
}

.feed-tab[b-lvlbagj5t4] {
    flex: 1;
    border: none;
    background-color: transparent;
    color: rgba(255, 255, 255, 0.8);
    padding: 0.6rem 1rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feed-tab:hover[b-lvlbagj5t4] {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
}

.feed-tab.active[b-lvlbagj5t4] {
    background-color: var(--accent-gold);
    color: var(--primary-burgundy);
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Summary KPI Cards */
.summary-section[b-lvlbagj5t4] {
    background-color: white;
    border-radius: 16px;
    padding: 1rem;
    border: 1px solid rgba(87, 2, 7, 0.06);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.summary-row[b-lvlbagj5t4] {
    display: grid;
    gap: 1rem;
}

.summary-card[b-lvlbagj5t4] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 1rem;
}

.summary-card:not(:last-child)[b-lvlbagj5t4] {
    border-right: 1px solid rgba(87, 2, 7, 0.08);
}

.sum-icon[b-lvlbagj5t4] {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.sum-icon.dark-red[b-lvlbagj5t4] {
    background-color: var(--primary-burgundy);
    color: white;
}

.sum-text h4[b-lvlbagj5t4] {
    margin: 0;
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 1.3rem;
}

.sum-text p[b-lvlbagj5t4] {
    margin: 0;
    color: var(--primary-burgundy);
    font-size: 0.8rem;
    line-height: 1.2;
    font-weight: 500;
}

/* Data Table Styling */
.table[b-lvlbagj5t4] {
    border-collapse: separate;
    border-spacing: 0;
}

.table th[b-lvlbagj5t4] {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.table td[b-lvlbagj5t4] {
    vertical-align: middle;
}

.table-hover tbody tr:hover[b-lvlbagj5t4] {
    background-color: #fffdfa !important;
}

/* Pagination Links */
.pagination .page-link[b-lvlbagj5t4] {
    color: var(--primary-burgundy);
    border-color: #eee;
    font-weight: 600;
}

.pagination .page-item.active .page-link[b-lvlbagj5t4] {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--primary-burgundy);
    font-weight: 700;
}

.pagination .page-item.disabled .page-link[b-lvlbagj5t4] {
    color: #ccc;
    background-color: #f9f9f9;
}

/* Responsive Mobile Layout Enhancements */
@media (max-width: 768px) {
    .dashboard-layout[b-lvlbagj5t4] {
        overflow: hidden !important;
        max-width: 100% !important;
    }

    .left-column[b-lvlbagj5t4] {
        overflow: hidden !important;
        max-width: 100% !important;
    }

    .dashboard-header[b-lvlbagj5t4] {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.75rem !important;
        max-width: 100% !important;
    }
    
    .header-right-icons[b-lvlbagj5t4] {
        width: 100% !important;
        justify-content: flex-end !important;
    }
    
    .greeting h1[b-lvlbagj5t4] {
        font-size: 1.25rem !important;
    }
    
    .main-content-card[b-lvlbagj5t4] {
        padding: 0.75rem 0.5rem !important;
        border-radius: 14px !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }
    
    /* Category Tabs: Grid layout on Mobile */
    .feed-tabs[b-lvlbagj5t4] {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.5rem !important;
        padding: 0.5rem !important;
        border-radius: 12px !important;
        max-width: 100% !important;
    }

    .feed-tabs[b-lvlbagj5t4]::-webkit-scrollbar {
        display: none;
    }
    
    .feed-tab[b-lvlbagj5t4] {
        padding: 0.45rem 0.5rem !important;
        font-size: 0.78rem !important;
        width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
        white-space: normal !important;
        border-radius: 10px !important;
        min-height: 45px !important;
        display: flex !important;
        align-items: center !important;
    }

    .feed-tab i[b-lvlbagj5t4] {
        font-size: 0.85rem !important;
        margin-right: 0.25rem !important;
    }
    
    /* KPI Summary Section on Mobile */
    .summary-section[b-lvlbagj5t4] {
        padding: 0.6rem !important;
        border-radius: 12px !important;
        max-width: 100% !important;
    }
    
    .summary-row[b-lvlbagj5t4] {
        grid-template-columns: 1fr !important;
        gap: 0.5rem !important;
    }
    
    .summary-card[b-lvlbagj5t4] {
        flex-direction: row !important;
        text-align: left !important;
        padding: 0.5rem 0.7rem !important;
        gap: 0.75rem !important;
        background: #fff8f2 !important;
        border-radius: 10px !important;
        border: 1px solid rgba(87, 2, 7, 0.06) !important;
    }

    .summary-card:not(:last-child)[b-lvlbagj5t4] {
        border-right: none !important;
        border-bottom: none !important;
    }

    .sum-icon[b-lvlbagj5t4] {
        width: 38px !important;
        height: 38px !important;
        font-size: 1.1rem !important;
    }

    .sum-text h4[b-lvlbagj5t4] {
        font-size: 1rem !important;
    }

    .sum-text p[b-lvlbagj5t4] {
        font-size: 0.7rem !important;
        line-height: 1.15 !important;
    }

    .search-box[b-lvlbagj5t4] {
        width: 100% !important;
        min-width: 100% !important;
    }


    .pagination[b-lvlbagj5t4] {
        flex-wrap: wrap !important;
    }
}
/* /Components/Pages/Settings.razor.rz.scp.css */
/* Settings Page - Dark Coffee Theme */

.dashboard-layout[b-nm966ouf0x] {
    display: flex;
    gap: 1.5rem;
    background-color: #300002; /* Dark coffee background */
    padding: 1.5rem 2rem;
    margin: -1rem -2rem; /* Expand to touch the edges of the parent container */
    border-radius: 0;
    min-height: 100%;
    flex: 1 0 auto; /* CRITICAL: Prevents the background from shrinking smaller than the content */
}

/* Sidebar Menu Card */
.settings-sidebar[b-nm966ouf0x] {
    flex: 3;
    max-width: 340px;
    background-color: #4b0005; /* Lighter coffee/burgundy for cards */
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    border: 1px solid rgba(255,255,255,0.05);
}

/* Content Card */
.settings-content[b-nm966ouf0x] {
    flex: 7;
    min-width: 0; /* CRITICAL: Prevents flex children from overflowing parent container */
    background-color: #4b0005;
    border-radius: 15px;
    padding: 1.75rem;
    border: 1px solid rgba(255,255,255,0.05);
}

/* Sidebar Menu Styles */
.menu-group[b-nm966ouf0x] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.menu-group-title[b-nm966ouf0x] {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-left: 0.5rem;
}

.menu-item[b-nm966ouf0x] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    background-color: rgba(100, 0, 10, 0.4);
    border: 1px solid rgba(255,255,255,0.05);
}

.menu-item:hover[b-nm966ouf0x] {
    background-color: rgba(150, 0, 20, 0.4);
}

.menu-item.active[b-nm966ouf0x] {
    background-color: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--accent-gold);
}

.menu-icon[b-nm966ouf0x] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.menu-item.active .menu-icon[b-nm966ouf0x] {
    background-color: var(--accent-gold);
    color: #4b0005;
}

.menu-details[b-nm966ouf0x] {
    flex: 1;
}

.menu-details h4[b-nm966ouf0x] {
    margin: 0;
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
}

.menu-details p[b-nm966ouf0x] {
    margin: 0;
    color: rgba(255,255,255,0.6);
    font-size: 0.75rem;
}

.menu-arrow[b-nm966ouf0x] {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.menu-item.active .menu-arrow[b-nm966ouf0x] {
    color: var(--accent-gold);
}

/* Logout Button */
.btn-logout[b-nm966ouf0x] {
    background-color: rgba(100, 0, 10, 0.4);
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
    border-radius: 12px;
    padding: 1rem;
    width: 100%;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    transition: all 0.2s;
}

.btn-logout:hover[b-nm966ouf0x] {
    background-color: var(--accent-gold);
    color: #4b0005;
}

/* Content Area Header */
.content-header[b-nm966ouf0x] {
    margin-bottom: 1.25rem;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 0.75rem;
}

.content-header h2[b-nm966ouf0x] {
    color: white;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.content-header p[b-nm966ouf0x] {
    color: rgba(255,255,255,0.7);
    font-size: 0.78rem;
    margin-bottom: 0;
}

/* Form Section Title */
.form-section-title[b-nm966ouf0x] {
    color: var(--accent-gold);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    margin-top: 1rem;
}

/* Profile Picture area */
.profile-pic-container[b-nm966ouf0x] {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.profile-avatar-wrapper[b-nm966ouf0x] {
    position: relative;
}

.profile-avatar[b-nm966ouf0x] {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #f5d0b5; 
    border: 3px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.profile-avatar img[b-nm966ouf0x] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.camera-btn[b-nm966ouf0x] {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 36px;
    height: 36px;
    background-color: var(--accent-gold);
    color: #4b0005;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #4b0005;
    cursor: pointer;
}

/* Child Avatar */
.child-avatar-wrapper[b-nm966ouf0x] {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}
.child-avatar[b-nm966ouf0x] {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid var(--accent-gold);
    background-color: rgba(100, 0, 10, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--accent-gold);
    position: relative;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}
.child-avatar .edit-btn[b-nm966ouf0x] {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 36px;
    height: 36px;
    background-color: var(--accent-gold);
    color: #4b0005;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #4b0005;
    font-size: 1rem;
    cursor: pointer;
}

/* Form Inputs (Dark Theme) */
.custom-input-group[b-nm966ouf0x] {
    background-color: rgba(100, 0, 10, 0.4);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.input-icon[b-nm966ouf0x] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.input-content[b-nm966ouf0x] {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.input-content label[b-nm966ouf0x] {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.2rem;
    font-weight: 500;
}

.input-content input[b-nm966ouf0x], .input-content select[b-nm966ouf0x] {
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    width: 100%;
}

.input-content input[b-nm966ouf0x]::placeholder {
    color: rgba(255,255,255,0.3);
    font-weight: normal;
}

.input-content select option[b-nm966ouf0x] {
    background-color: #4b0005;
    color: white;
}

.input-action[b-nm966ouf0x] {
    color: var(--accent-gold);
    cursor: pointer;
    font-weight: 600;
}

/* Preferences Toggle */
.pref-item[b-nm966ouf0x] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(100, 0, 10, 0.4);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.pref-info[b-nm966ouf0x] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pref-info .menu-icon[b-nm966ouf0x] {
    border-color: var(--accent-gold);
}

.pref-text h4[b-nm966ouf0x] {
    margin: 0;
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
}
.pref-text p[b-nm966ouf0x] {
    margin: 0;
    color: rgba(255,255,255,0.6);
    font-size: 0.75rem;
}

.toggle-pill[b-nm966ouf0x] {
    display: flex;
    background-color: rgba(50, 0, 5, 0.6);
    border-radius: 25px;
    overflow: hidden;
    padding: 0.2rem;
}

.toggle-option[b-nm966ouf0x] {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 20px;
}

.toggle-option.active[b-nm966ouf0x] {
    background-color: var(--accent-gold);
    color: #4b0005;
}

/* Save Buttons */
.btn-save-settings[b-nm966ouf0x] {
    background-color: var(--accent-gold);
    color: #4b0005;
    border: none;
    border-radius: 12px;
    padding: 1rem;
    font-weight: 700;
    width: 100%;
    font-size: 1.05rem;
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

.btn-save-settings:hover[b-nm966ouf0x] {
    background-color: #ffd700;
    transform: translateY(-2px);
}

.btn-cancel[b-nm966ouf0x] {
    background-color: transparent;
    color: var(--accent-gold);
    border: none;
    padding: 1rem;
    width: 100%;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Added Child specific */
.added-child-avatar[b-nm966ouf0x] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--accent-gold);
    overflow: hidden;
    flex-shrink: 0;
}

.added-child-avatar img[b-nm966ouf0x] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .dashboard-layout[b-nm966ouf0x] {
        flex-direction: column;
    }
    
    /* By default, show sidebar and hide content pane on mobile */
    .settings-sidebar[b-nm966ouf0x] {
        display: flex !important;
        width: 100%;
    }
    .settings-content[b-nm966ouf0x] {
        display: none !important;
        width: 100%;
    }
    
    /* When content is active on mobile, hide sidebar and show content pane */
    .mobile-content-active .settings-sidebar[b-nm966ouf0x] {
        display: none !important;
    }
    .mobile-content-active .settings-content[b-nm966ouf0x] {
        display: block !important;
    }

    .profile-pic-container[b-nm966ouf0x] {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* =============================================
   MODAL & TOAST STYLES
   ============================================= */

.modal-overlay[b-nm966ouf0x] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    backdrop-filter: blur(2px);
    animation: fadeIn-b-nm966ouf0x 0.2s ease-out;
}

@keyframes fadeIn-b-nm966ouf0x {
    from { opacity: 0; }
    to { opacity: 1; }
}

.delete-modal[b-nm966ouf0x], .loading-modal[b-nm966ouf0x] {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    width: 90%;
    max-width: 400px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: slideUp-b-nm966ouf0x 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes slideUp-b-nm966ouf0x {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-close[b-nm966ouf0x] {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
    transition: color 0.2s;
}

.modal-close:hover[b-nm966ouf0x] {
    color: #333;
}

.modal-icon-container[b-nm966ouf0x] {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.modal-icon-circle[b-nm966ouf0x] {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #fff8eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #f5a623;
}

.modal-title[b-nm966ouf0x] {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    margin-bottom: 0.5rem;
}

.modal-message[b-nm966ouf0x] {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.modal-buttons[b-nm966ouf0x] {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-modal-cancel[b-nm966ouf0x] {
    flex: 1;
    background: white;
    border: 1.5px solid #d9534f;
    color: #d9534f;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-modal-cancel:hover[b-nm966ouf0x] {
    background: #fff5f5;
}

.btn-modal-delete[b-nm966ouf0x] {
    flex: 1;
    background: #8B0000;
    border: none;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 0;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-modal-delete:hover[b-nm966ouf0x] {
    background: #730000;
}

/* Success Toast */
.success-toast[b-nm966ouf0x] {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f2fbf5;
    border: 1px solid #c8e6c9;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border-radius: 12px;
    padding: 12px 20px 12px 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    z-index: 1100;
    animation: toastSlideDown-b-nm966ouf0x 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes toastSlideDown-b-nm966ouf0x {
    from { transform: translate(-50%, -40px); opacity: 0; }
    to { transform: translate(-50%, 0); opacity: 1; }
}

.toast-icon[b-nm966ouf0x] {
    font-size: 1.4rem;
    color: #2e7d32;
    margin-top: 2px;
}

.toast-content h4[b-nm966ouf0x] {
    margin: 0 0 2px 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: #2e7d32;
}

.toast-content p[b-nm966ouf0x] {
    margin: 0;
    font-size: 0.85rem;
    color: #4caf50;
}

.toast-close[b-nm966ouf0x] {
    background: transparent;
    border: none;
    font-size: 1.2rem;
    color: #81c784;
    cursor: pointer;
    margin-left: 10px;
}

.toast-close:hover[b-nm966ouf0x] {
    color: #2e7d32;
}
/* /Components/Pages/Sleep.razor.rz.scp.css */
/* Sleep Tracker Specific Styles */

.dashboard-layout[b-2bnacrtljg] {
    display: flex;
    gap: 1rem;
}

.left-column[b-2bnacrtljg] {
    flex: 7;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: flex-start;
}

.right-column[b-2bnacrtljg] {
    flex: 3;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: flex-start;
    position: sticky;
    top: 0;
    height: max-content;
}

/* Sleep Header Area - matches the dark red background in the design */
.sleep-header-container[b-2bnacrtljg] {
    background-color: #570207; /* Dark Burgundy */
    border-radius: 15px;
    padding: 1.5rem;
    color: white;
    margin-bottom: 0.5rem;
    position: relative;
    overflow: hidden;
}

.sleep-header-container h1[b-2bnacrtljg] {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: white;
}

.sleep-header-container p[b-2bnacrtljg] {
    font-size: 0.95rem;
    opacity: 0.85;
    margin-bottom: 1.5rem;
}

.notification-btn[b-2bnacrtljg] {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.notification-badge[b-2bnacrtljg] {
    position: absolute;
    top: -2px;
    right: -2px;
    background-color: #ffc107;
    color: #570207;
    font-size: 0.6rem;
    font-weight: bold;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Sleep Summary Row (Translucent Dark Red) */
.sleep-summary-card[b-2bnacrtljg] {
    background-color: rgba(60, 0, 5, 0.4);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.summary-header[b-2bnacrtljg] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
}

.summary-date[b-2bnacrtljg] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    opacity: 0.8;
}

.summary-grid[b-2bnacrtljg] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.sleep-stat-box[b-2bnacrtljg] {
    background-color: rgba(30, 0, 0, 0.3);
    border-radius: 10px;
    padding: 0.8rem 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.stat-icon-wrapper[b-2bnacrtljg] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}

.stat-icon[b-2bnacrtljg] {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: white;
}

.stat-icon.total[b-2bnacrtljg] { background-color: #4a148c; } /* Dark Purple */
.stat-icon.night[b-2bnacrtljg] { background-color: #1e88e5; } /* Blue */
.stat-icon.day[b-2bnacrtljg] { background-color: #ffa000; }   /* Orange/Yellow */
.stat-icon.wake[b-2bnacrtljg] { background-color: #e53935; }  /* Red */

.stat-label[b-2bnacrtljg] {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
}

.stat-value[b-2bnacrtljg] {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.2rem;
    line-height: 1;
}

.stat-value span[b-2bnacrtljg] {
    font-size: 0.8rem;
    font-weight: normal;
    opacity: 0.8;
}

.stat-status[b-2bnacrtljg] {
    font-size: 0.7rem;
    font-weight: 600;
}

.stat-status.good[b-2bnacrtljg] { color: #4caf50; } /* Green */
.stat-status.normal[b-2bnacrtljg] { color: #ffc107; } /* Yellow */

/* White Content Cards */
.dash-card[b-2bnacrtljg] {
    background-color: white;
    border-radius: 15px;
    padding: 1.2rem;
    box-shadow: 0 4px 15px rgba(87, 2, 7, 0.05);
}

.card-title-row[b-2bnacrtljg] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
}

.card-title-row h3[b-2bnacrtljg] {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-burgundy);
}

.card-title-row .icon[b-2bnacrtljg] {
    color: #ffc107;
    font-size: 1.2rem;
}

/* Form Styles */
.form-label[b-2bnacrtljg] {
    font-size: 0.8rem;
    color: var(--primary-burgundy);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.input-box[b-2bnacrtljg] {
    background-color: #fdfaf7;
    border: 1px solid rgba(87, 2, 7, 0.05);
    border-radius: 10px;
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    position: relative;
    margin-bottom: 1rem;
}

.input-box i[b-2bnacrtljg] {
    color: #ff9800;
    font-size: 1.1rem;
}

.input-box.disabled[b-2bnacrtljg] {
    background-color: #f5f5f5;
    color: #888;
}

.input-box.disabled i[b-2bnacrtljg] {
    color: #aaa;
}

.btn-save[b-2bnacrtljg] {
    background-color: var(--accent-gold);
    color: var(--primary-burgundy);
    border: none;
    border-radius: 10px;
    padding: 0.9rem;
    font-weight: 700;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

/* Activity List */
.activity-header[b-2bnacrtljg] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.activity-header h3[b-2bnacrtljg] {
    color: var(--primary-burgundy);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.activity-header a[b-2bnacrtljg] {
    color: var(--accent-gold);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.activity-list[b-2bnacrtljg] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.activity-item[b-2bnacrtljg] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px dashed rgba(87, 2, 7, 0.1);
}

.activity-item:last-child[b-2bnacrtljg] {
    border-bottom: none;
    padding-bottom: 0;
}

.activity-icon[b-2bnacrtljg] {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: white;
}

.activity-icon.night[b-2bnacrtljg] { background-color: transparent; color: #4a148c; font-size: 1.2rem; }
.activity-icon.day[b-2bnacrtljg] { background-color: transparent; color: #ffc107; font-size: 1.2rem; }

.activity-time[b-2bnacrtljg] {
    width: 130px;
    font-size: 0.85rem;
    color: var(--primary-burgundy);
    font-weight: 600;
}

.activity-time p[b-2bnacrtljg] {
    margin: 0;
    font-size: 0.7rem;
    color: #888;
    font-weight: 400;
}

.activity-details[b-2bnacrtljg] {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.activity-details h4[b-2bnacrtljg] {
    margin: 0;
    color: var(--primary-burgundy);
    font-weight: 600;
    font-size: 0.9rem;
}

.activity-details p[b-2bnacrtljg] {
    margin: 0;
    color: #888;
    font-size: 0.75rem;
}

.activity-arrow[b-2bnacrtljg] {
    color: #ccc;
    font-size: 0.8rem;
}

.dropdown-icon[b-2bnacrtljg] {
    position: absolute;
    right: 1rem;
    color: #aaa;
}

@media (max-width: 768px) {
    .dashboard-layout[b-2bnacrtljg] {
        flex-direction: column;
    }
    
    .sleep-header-container h1[b-2bnacrtljg] {
        font-size: 1.15rem !important;
        margin-bottom: 0.15rem !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .sleep-header-container p[b-2bnacrtljg] {
        font-size: 0.75rem !important;
        margin-bottom: 0.85rem !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .summary-header[b-2bnacrtljg] {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        margin-bottom: 0.6rem !important;
        width: 100% !important;
    }

    .summary-header > span:first-child[b-2bnacrtljg] {
        font-size: 0.75rem !important;
        font-weight: 600 !important;
        white-space: nowrap !important;
    }

    .summary-date[b-2bnacrtljg] {
        font-size: 0.68rem !important;
        opacity: 0.85 !important;
        white-space: nowrap !important;
    }

    .sleep-summary-card[b-2bnacrtljg] {
        padding: 0.65rem 0.5rem !important;
        overflow: hidden !important;
    }

    .summary-grid[b-2bnacrtljg] {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 0.2rem !important;
        width: 100% !important;
        overflow: hidden !important;
    }

    .sleep-stat-box[b-2bnacrtljg] {
        padding: 0.4rem 0.15rem !important;
        border-radius: 8px !important;
        min-width: 0 !important;
        overflow: hidden !important;
    }

    .stat-icon-wrapper[b-2bnacrtljg] {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.15rem !important;
        margin-bottom: 0.2rem !important;
    }

    .stat-icon[b-2bnacrtljg] {
        width: 20px !important;
        height: 20px !important;
        font-size: 0.75rem !important;
    }

    .stat-label[b-2bnacrtljg] {
        font-size: 0.58rem !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        max-width: 100% !important;
    }

    .stat-value[b-2bnacrtljg] {
        font-size: 0.82rem !important;
        margin-bottom: 0.1rem !important;
        white-space: nowrap !important;
    }

    .stat-value span[b-2bnacrtljg] {
        font-size: 0.65rem !important;
    }

    .stat-status[b-2bnacrtljg] {
        font-size: 0.58rem !important;
    }

    .form-label[b-2bnacrtljg] {
        font-size: 0.72rem !important;
        margin-bottom: 0.2rem !important;
        font-weight: 600 !important;
    }

    .input-box[b-2bnacrtljg] {
        height: 38px !important;
        padding: 0 0.5rem !important;
        border-radius: 10px !important;
    }

    .input-box span[b-2bnacrtljg] {
        font-size: 0.72rem !important;
        font-weight: 600 !important;
    }

    .input-box i[b-2bnacrtljg] {
        font-size: 0.82rem !important;
    }

    .input-custom[b-2bnacrtljg] {
        font-size: 0.78rem !important;
        padding: 0.45rem 0.5rem 0.45rem 2.2rem !important;
    }

    .btn-save[b-2bnacrtljg] {
        padding: 0.55rem 1rem !important;
        font-size: 0.82rem !important;
        border-radius: 10px !important;
        margin-top: 0.5rem !important;
    }

    .card-title-row[b-2bnacrtljg] {
        flex-wrap: nowrap !important;
    }

    .card-title-row h3[b-2bnacrtljg] {
        font-size: 0.95rem !important;
        white-space: nowrap;
    }

    .history-section-header[b-2bnacrtljg], .activity-header[b-2bnacrtljg] {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: space-between !important;
        align-items: center !important;
    }
    
    .history-section-header h3[b-2bnacrtljg], .activity-header h3[b-2bnacrtljg] {
        font-size: 0.88rem !important;
        white-space: nowrap;
    }

    .view-all-link[b-2bnacrtljg] {
        font-size: 0.72rem !important;
    }
    
    .history-item[b-2bnacrtljg] {
        padding: 0.5rem 0 !important;
        gap: 0.25rem !important;
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
    }
    
    .history-time strong[b-2bnacrtljg] {
        font-size: 0.72rem !important;
    }
    
    .history-time span[b-2bnacrtljg] {
        font-size: 0.58rem !important;
    }

    .history-icon i[b-2bnacrtljg] {
        font-size: 0.85rem !important;
    }

    .history-type[b-2bnacrtljg] {
        font-size: 0.75rem !important;
        white-space: nowrap;
    }

    .history-amount[b-2bnacrtljg] {
        font-size: 0.75rem !important;
        white-space: nowrap;
    }

    .history-arrow i[b-2bnacrtljg] {
        font-size: 0.85rem !important;
    }
    
    .activity-item[b-2bnacrtljg] {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        gap: 0.5rem !important;
    }
}
/* /Components/Pages/Temperature.razor.rz.scp.css */
/* Temperature Tracker Specific Styles */

.dashboard-layout[b-cernhoi0kg] {
    display: flex;
    gap: 1rem;
}

.left-column[b-cernhoi0kg] {
    flex: 7;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: flex-start;
}

.right-column[b-cernhoi0kg] {
    flex: 3;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: flex-start;
    position: sticky;
    top: 0;
    height: max-content;
}

/* Header Area */
.temp-header-container[b-cernhoi0kg] {
    background: linear-gradient(135deg, #5c0005 0%, #300002 100%);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    color: white;
    margin-bottom: 0.5rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.temp-header-content[b-cernhoi0kg] {
    position: relative;
    z-index: 2;
}

.temp-header-content h1[b-cernhoi0kg] {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.15rem;
    color: white;
}

.temp-header-content p[b-cernhoi0kg] {
    font-size: 0.85rem;
    opacity: 0.85;
    margin-bottom: 0;
    max-width: 300px;
}

.temp-header-icon[b-cernhoi0kg] {
    font-size: 5rem;
    color: var(--accent-gold);
    opacity: 0.9;
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

/* Stars Decoration */
.star[b-cernhoi0kg] {
    position: absolute;
    color: var(--accent-gold);
    opacity: 0.6;
}

/* Dash Card */
.dash-card[b-cernhoi0kg] {
    background-color: #fcfcfc;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(87, 2, 7, 0.05);
}

.form-label[b-cernhoi0kg] {
    font-size: 0.8rem;
    color: var(--primary-burgundy);
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
}

/* Input Boxes */
.input-box[b-cernhoi0kg] {
    background-color: #fff;
    border: 1px solid rgba(87, 2, 7, 0.1);
    border-radius: 10px;
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    position: relative;
    margin-bottom: 1.2rem;
    color: var(--primary-burgundy);
}

.input-box input[b-cernhoi0kg], .input-box select[b-cernhoi0kg] {
    border: none;
    background: transparent;
    width: 100%;
    outline: none;
    color: var(--primary-burgundy);
    font-size: 0.9rem;
    font-weight: 600;
}

.input-box input[b-cernhoi0kg]::placeholder {
    color: #aaa;
    font-weight: normal;
}

/* Temp Reading Layout */
.temp-input-group[b-cernhoi0kg] {
    display: flex;
    gap: 0.35rem;
    margin-bottom: 1.2rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.temp-input-box[b-cernhoi0kg] {
    flex: 1 1 auto;
    min-width: 0;
    background-color: #fff;
    border: 1px solid rgba(87, 2, 7, 0.1);
    border-radius: 10px;
    padding: 0.4rem 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    box-sizing: border-box;
}

.temp-input-box i[b-cernhoi0kg] {
    color: #e53935;
    font-size: 1.05rem;
    flex-shrink: 0;
}

.temp-input-box input[b-cernhoi0kg] {
    border: none;
    outline: none;
    width: 100%;
    min-width: 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    padding: 0;
    margin: 0;
    background: transparent;
    -moz-appearance: textfield;
}

.temp-input-box input[b-cernhoi0kg]::-webkit-outer-spin-button,
.temp-input-box input[b-cernhoi0kg]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.temp-unit-select[b-cernhoi0kg] {
    flex: 0 0 auto;
    background-color: #fff;
    border: 1px solid rgba(87, 2, 7, 0.1);
    border-radius: 10px;
    padding: 0.35rem 0.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.temp-unit-select select[b-cernhoi0kg] {
    border: none;
    outline: none;
    background: transparent;
    font-weight: 600;
    color: var(--primary-burgundy);
}

.unit-toggle[b-cernhoi0kg] {
    display: flex;
    background-color: #f0f0f0;
    border-radius: 20px;
    padding: 0.15rem;
    margin-left: 0;
}

.unit-btn[b-cernhoi0kg] {
    padding: 0.3rem 0.6rem;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #888;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.unit-btn.active[b-cernhoi0kg] {
    background-color: var(--accent-gold);
    color: var(--primary-burgundy);
}

/* Method Cards */
.method-grid[b-cernhoi0kg] {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
    flex-wrap: nowrap;
}

.method-card[b-cernhoi0kg] {
    flex: 1;
    min-width: 60px;
    background-color: #fff;
    border: 1px solid rgba(87, 2, 7, 0.1);
    border-radius: 12px;
    padding: 1rem 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
}

.method-card.active[b-cernhoi0kg] {
    background-color: #fff9e6;
    border-color: var(--accent-gold);
}

.method-icon[b-cernhoi0kg] {
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
}

.method-card span[b-cernhoi0kg] {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary-burgundy);
    white-space: nowrap;
}

/* Symptoms Pills */
.symptoms-grid[b-cernhoi0kg] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-bottom: 1.2rem;
}

.symptom-pill[b-cernhoi0kg] {
    background-color: #fff;
    border: 1px solid rgba(87, 2, 7, 0.1);
    border-radius: 20px;
    padding: 0.6rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-burgundy);
    cursor: pointer;
    transition: all 0.2s;
}

.symptom-pill.active[b-cernhoi0kg] {
    background-color: #fff9e6;
    border-color: var(--accent-gold);
}

.symptom-pill i[b-cernhoi0kg] {
    font-size: 1.1rem;
}

/* Button */
.btn-save[b-cernhoi0kg] {
    background-color: var(--primary-burgundy);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-weight: 600;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    margin-top: 1rem;
    transition: background-color 0.2s;
    cursor: pointer;
}

.btn-save:hover[b-cernhoi0kg] {
    background-color: #3f0003;
}

/* History Timeline Section */
.history-header[b-cernhoi0kg] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.history-header h3[b-cernhoi0kg] {
    color: #e53935; /* Red color matching design */
    font-size: 0.9rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.history-header a[b-cernhoi0kg] {
    color: var(--primary-burgundy);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
}

.history-timeline[b-cernhoi0kg] {
    position: relative;
    padding-left: 1.5rem;
}

/* Vertical line */
.history-timeline[b-cernhoi0kg]::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 10px;
    bottom: 30px;
    width: 2px;
    background-color: var(--accent-gold);
}

.history-row[b-cernhoi0kg] {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    position: relative;
    border-bottom: 1px dashed rgba(87, 2, 7, 0.1);
}

.history-row:last-child[b-cernhoi0kg] {
    border-bottom: none;
}

/* Timeline dot */
.history-row[b-cernhoi0kg]::before {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: white;
    border: 2px solid var(--accent-gold);
    z-index: 2;
}

/* Hide dot for last item if we don't want line to extend, but design shows dots on all */

.history-date[b-cernhoi0kg] {
    flex: 1;
    font-size: 0.8rem;
    color: var(--primary-burgundy);
    font-weight: 600;
    display: flex;
    flex-direction: column;
}

.history-date span[b-cernhoi0kg] {
    font-weight: 700;
}

.history-time[b-cernhoi0kg] {
    flex: 1.5;
    font-size: 0.85rem;
    color: var(--primary-burgundy);
    font-weight: 600;
}

.history-value[b-cernhoi0kg] {
    flex: 1.5;
    font-size: 1.2rem;
    font-weight: 700;
}

.history-value.normal[b-cernhoi0kg] { color: #2e7d32; }
.history-value.mild[b-cernhoi0kg] { color: #f57f17; }
.history-value.high[b-cernhoi0kg] { color: #d32f2f; }

.history-method[b-cernhoi0kg] {
    flex: 1.5;
    font-size: 0.85rem;
    color: var(--primary-burgundy);
}

.history-badge[b-cernhoi0kg] {
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.badge-normal[b-cernhoi0kg] {
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.badge-mild[b-cernhoi0kg] {
    background-color: #fff8e1;
    color: #f57f17;
    border: 1px solid #ffe082;
}

.badge-high[b-cernhoi0kg] {
    background-color: #ffebee;
    color: #d32f2f;
    border: 1px solid #ef9a9a;
}

.history-arrow[b-cernhoi0kg] {
    margin-left: 1rem;
    color: #ccc;
    font-size: 0.8rem;
}

/* Recent Activity Specific */
.activity-header[b-cernhoi0kg] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.activity-header h3[b-cernhoi0kg] {
    color: var(--primary-burgundy);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.activity-header a[b-cernhoi0kg] {
    color: var(--accent-gold);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.activity-list[b-cernhoi0kg] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.activity-item[b-cernhoi0kg] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px dashed rgba(87, 2, 7, 0.1);
}

.activity-item:last-child[b-cernhoi0kg] {
    border-bottom: none;
    padding-bottom: 0;
}

.activity-icon[b-cernhoi0kg] {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.activity-details[b-cernhoi0kg] {
    flex: 1;
}

.activity-details h4[b-cernhoi0kg] {
    margin: 0;
    color: var(--primary-burgundy);
    font-weight: 600;
    font-size: 0.9rem;
}

.activity-details p[b-cernhoi0kg] {
    margin: 0;
    color: #888;
    font-size: 0.75rem;
}

.activity-arrow[b-cernhoi0kg] {
    color: #ccc;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .dashboard-layout[b-cernhoi0kg] {
        flex-direction: column;
    }
    
    .temp-header-container h1[b-cernhoi0kg] {
        font-size: 1.15rem !important;
        margin-bottom: 0.15rem !important;
    }
    
    .temp-header-container p[b-cernhoi0kg] {
        font-size: 0.75rem !important;
        white-space: nowrap; 
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .form-label[b-cernhoi0kg] {
        font-size: 0.72rem !important;
        margin-bottom: 0.2rem !important;
        font-weight: 600 !important;
    }

    .input-box[b-cernhoi0kg] {
        height: 38px !important;
        padding: 0 0.5rem !important;
        border-radius: 10px !important;
    }

    .input-box span[b-cernhoi0kg] {
        font-size: 0.72rem !important;
        font-weight: 600 !important;
    }

    .input-box i[b-cernhoi0kg] {
        font-size: 0.82rem !important;
    }

    .input-custom[b-cernhoi0kg] {
        font-size: 0.78rem !important;
        padding: 0.45rem 0.5rem 0.45rem 2.2rem !important;
    }

    .btn-save[b-cernhoi0kg] {
        padding: 0.55rem 1rem !important;
        font-size: 0.82rem !important;
        border-radius: 10px !important;
        margin-top: 0.5rem !important;
    }

    .activity-header[b-cernhoi0kg], .history-section-header[b-cernhoi0kg] {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
    }
    
    .activity-header h3[b-cernhoi0kg], .history-section-header h3[b-cernhoi0kg] {
        font-size: 0.95rem !important;
        margin: 0 !important;
        white-space: nowrap !important;
    }

    .activity-header a[b-cernhoi0kg], .history-section-header a[b-cernhoi0kg] {
        white-space: nowrap !important;
        font-size: 0.75rem !important;
        margin: 0 !important;
    }

    .symptom-pill[b-cernhoi0kg] {
        padding: 0.4rem 0.3rem !important;
        font-size: 0.7rem !important;
        justify-content: center !important;
        gap: 0.2rem !important;
    }
    .symptom-pill i[b-cernhoi0kg] {
        margin-right: 0 !important;
    }
    
    .method-grid[b-cernhoi0kg] {
        gap: 0.2rem !important;
    }

    .method-card[b-cernhoi0kg] {
        min-width: 0 !important;
        padding: 0.5rem 0.2rem !important;
        gap: 0.2rem !important;
    }

    .method-icon[b-cernhoi0kg] {
        font-size: 1.2rem !important;
    }

    .method-card span[b-cernhoi0kg] {
        font-size: 0.6rem !important;
        white-space: nowrap;
    }
    
    .history-row[b-cernhoi0kg] {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 0.5rem 0 !important;
        gap: 0.25rem !important;
    }
    
    .history-date[b-cernhoi0kg] {
        font-size: 0.65rem !important;
        white-space: nowrap !important;
        line-height: 1.1 !important;
        flex: none !important;
    }
    
    .history-date span[b-cernhoi0kg] {
        font-size: 0.65rem !important;
    }

    .history-time[b-cernhoi0kg] {
        font-size: 0.68rem !important;
        white-space: nowrap !important;
        flex: none !important;
    }
    
    .history-value[b-cernhoi0kg] {
        font-size: 0.78rem !important;
        font-weight: 700 !important;
        white-space: nowrap !important;
        flex: none !important;
    }
    
    .history-method[b-cernhoi0kg] {
        font-size: 0.68rem !important;
        color: #666 !important;
        white-space: nowrap !important;
        flex: none !important;
    }
    
    .history-badge[b-cernhoi0kg] {
        font-size: 0.6rem !important;
        padding: 0.15rem 0.35rem !important;
        white-space: nowrap !important;
        border-radius: 12px !important;
        flex: none !important;
    }
    
    .history-arrow[b-cernhoi0kg] {
        flex: none !important;
    }

    .history-arrow i[b-cernhoi0kg] {
        font-size: 0.8rem !important;
    }
}
