@import '_content/Blazor.Bootstrap/Blazor.Bootstrap.olwso25aue.bundle.scp.css';

/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-6uryw39raf],
.components-reconnect-repeated-attempt-visible[b-6uryw39raf],
.components-reconnect-failed-visible[b-6uryw39raf],
.components-pause-visible[b-6uryw39raf],
.components-resume-failed-visible[b-6uryw39raf],
.components-rejoining-animation[b-6uryw39raf] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-6uryw39raf],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-6uryw39raf],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-6uryw39raf],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-6uryw39raf],
#components-reconnect-modal.components-reconnect-retrying[b-6uryw39raf],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-6uryw39raf],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-6uryw39raf],
#components-reconnect-modal.components-reconnect-failed[b-6uryw39raf],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-6uryw39raf] {
    display: block;
}


#components-reconnect-modal[b-6uryw39raf] {
    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-6uryw39raf 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-6uryw39raf 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-6uryw39raf 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-6uryw39raf]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-6uryw39raf 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-6uryw39raf {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-6uryw39raf {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-6uryw39raf {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-6uryw39raf] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-6uryw39raf] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-6uryw39raf] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-6uryw39raf] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-6uryw39raf] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-6uryw39raf] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-6uryw39raf] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-6uryw39raf 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-6uryw39raf] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-6uryw39raf {
    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/Auth/Login.razor.rz.scp.css */
.login-container[b-vynysfvih8] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.app-title[b-vynysfvih8] {
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.user-grid[b-vynysfvih8] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 400px;
    width: 100%;
}

.user-button[b-vynysfvih8] {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    min-height: 100px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.user-button:hover[b-vynysfvih8] {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.user-button:active[b-vynysfvih8] {
    transform: translateY(0);
}

.user-name[b-vynysfvih8] {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.notification-badge[b-vynysfvih8] {
    position: absolute;
    top: 8px;
    right: 8px;
    background-color: #ef4444;
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    min-width: 20px;
    text-align: center;
}

.loading[b-vynysfvih8] {
    color: white;
    font-size: 1.2rem;
}

.no-users[b-vynysfvih8] {
    color: white;
    text-align: center;
}

.no-users p[b-vynysfvih8] {
    margin-bottom: 1rem;
}
/* /Components/Pages/Auth/PinEntry.razor.rz.scp.css */
.pin-overlay[b-qkhp6o39qx] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.pin-modal[b-qkhp6o39qx] {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    max-width: 320px;
    width: 100%;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.pin-modal h2[b-qkhp6o39qx] {
    margin: 0 0 1.5rem;
    font-size: 1.25rem;
    color: #1f2937;
}

.pin-dots[b-qkhp6o39qx] {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.pin-dot[b-qkhp6o39qx] {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #d1d5db;
    background: transparent;
    transition: all 0.2s;
}

.pin-dot.filled[b-qkhp6o39qx] {
    background: #3b82f6;
    border-color: #3b82f6;
}

.error-message[b-qkhp6o39qx] {
    color: #ef4444;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.lockout-message[b-qkhp6o39qx] {
    color: #ef4444;
    font-size: 1rem;
    padding: 1rem;
    background: #fef2f2;
    border-radius: 8px;
}

.keypad[b-qkhp6o39qx] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.key-button[b-qkhp6o39qx] {
    padding: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    background: #f3f4f6;
    color: #1f2937;
    cursor: pointer;
    transition: background-color 0.2s;
}

.key-button:hover:not(:disabled)[b-qkhp6o39qx] {
    background: #e5e7eb;
}

.key-button:active:not(:disabled)[b-qkhp6o39qx] {
    background: #d1d5db;
}

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

.backspace-icon[b-qkhp6o39qx] {
    font-size: 1.25rem;
}

.cancel-icon[b-qkhp6o39qx] {
    font-size: 1.5rem;
    line-height: 1;
}
/* /Components/Pages/Kid/ChoreCard.razor.rz.scp.css */
.chore-card[b-q515rqtsxk] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.chore-card.in-progress[b-q515rqtsxk] {
    border-left: 4px solid #3b82f6;
}

.chore-card.pending-review[b-q515rqtsxk] {
    border-left: 4px solid #f59e0b;
}

.chore-info[b-q515rqtsxk] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.chore-icon[b-q515rqtsxk] {
    font-size: 0.875rem;
    font-weight: 600;
    color: #6b7280;
}

.chore-details h3[b-q515rqtsxk] {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
}

.chore-status[b-q515rqtsxk] {
    margin: 0.25rem 0 0;
    font-size: 0.875rem;
    color: #6b7280;
}

.chore-credits[b-q515rqtsxk] {
    margin: 0.25rem 0 0;
    font-size: 0.875rem;
    color: #059669;
    font-weight: 600;
}

.chore-actions[b-q515rqtsxk] {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.btn[b-q515rqtsxk] {
    border: none;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-claim[b-q515rqtsxk] {
    background-color: #3b82f6;
    color: white;
}

.btn-claim:hover[b-q515rqtsxk] {
    background-color: #2563eb;
}

.btn-complete[b-q515rqtsxk] {
    background-color: #10b981;
    color: white;
}

.btn-complete:hover[b-q515rqtsxk] {
    background-color: #059669;
}

.btn-unclaim[b-q515rqtsxk] {
    background-color: #f3f4f6;
    color: #6b7280;
    padding: 0.5rem 0.75rem;
}

.btn-unclaim:hover[b-q515rqtsxk] {
    background-color: #e5e7eb;
}

.btn-request-review[b-q515rqtsxk] {
    background-color: #f59e0b;
    color: white;
}

.btn-request-review:hover[b-q515rqtsxk] {
    background-color: #d97706;
}

.status-badge[b-q515rqtsxk] {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-badge.pending[b-q515rqtsxk] {
    background-color: #fef3c7;
    color: #92400e;
}
/* /Components/Pages/Kid/Dashboard.razor.rz.scp.css */
.dashboard-container[b-dk2i2ra4l7] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f3f4f6;
}

.dashboard-header[b-dk2i2ra4l7] {
    display: flex;
    align-items: center;
    padding: 1rem;
    background-color: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.btn-menu[b-dk2i2ra4l7] {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.user-name[b-dk2i2ra4l7] {
    flex: 1;
    font-weight: 600;
    margin-left: 0.5rem;
}

.header-right[b-dk2i2ra4l7] {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.balance[b-dk2i2ra4l7] {
    font-weight: 600;
    color: #059669;
}

.dashboard-content[b-dk2i2ra4l7] {
    flex: 1;
    padding: 1rem;
    padding-bottom: 5rem;
}

.chore-section[b-dk2i2ra4l7] {
    margin-bottom: 1.5rem;
}

.chore-section h2[b-dk2i2ra4l7] {
    font-size: 0.875rem;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.loading[b-dk2i2ra4l7],
.empty-state[b-dk2i2ra4l7] {
    text-align: center;
    padding: 2rem;
    color: #6b7280;
}

.dashboard-footer[b-dk2i2ra4l7] {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-around;
    padding: 1rem;
    background-color: white;
    box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.1);
}

.footer-btn[b-dk2i2ra4l7] {
    background: none;
    border: none;
    font-size: 1rem;
    color: #6b7280;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: background-color 0.2s;
}

.footer-btn:hover[b-dk2i2ra4l7] {
    background-color: #f3f4f6;
}

.footer-btn.active[b-dk2i2ra4l7] {
    color: #3b82f6;
    font-weight: 600;
}
/* /Components/Pages/Parent/ReviewModal.razor.rz.scp.css */
.modal-backdrop[b-ygyfu4uohi] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content[b-ygyfu4uohi] {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-content h3[b-ygyfu4uohi] {
    margin: 0 0 1rem;
    color: #1f2937;
}

.review-details[b-ygyfu4uohi] {
    background: #f3f4f6;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.review-details p[b-ygyfu4uohi] {
    margin: 0.25rem 0;
}

.chore-description[b-ygyfu4uohi] {
    margin-bottom: 1rem;
}

.rejection-reason[b-ygyfu4uohi] {
    margin-bottom: 1rem;
}

.modal-actions[b-ygyfu4uohi] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.modal-actions .btn[b-ygyfu4uohi] {
    flex: 1;
    min-width: 120px;
}
