@import '_content/Microsoft.AspNetCore.Components.QuickGrid/Microsoft.AspNetCore.Components.QuickGrid.boiwgh0w5b.bundle.scp.css';
@import '_content/TrackerShared/TrackerShared.brfa8lcusq.bundle.scp.css';

/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-80ljpx6hs8] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content[b-80ljpx6hs8] {
    flex: 1;
    width: 100%;
}

#blazor-error-ui[b-80ljpx6hs8] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    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-80ljpx6hs8] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Modals/GymOnboardingModal.razor.rz.scp.css */
/* Main Modal Layout */
.modal-backdrop[b-blid06mx4o] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1100;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    animation: fadeIn-b-blid06mx4o 0.2s ease-out;
    overscroll-behavior: contain;
}

.modal-dialog.onboarding-modal[b-blid06mx4o] {
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    pointer-events: auto;
    animation: slideUp-b-blid06mx4o 0.3s ease-out;
    transition: max-width 0.3s ease;
}

/* Expanded modal for Step 2 */
.modal-dialog.onboarding-modal.step-2[b-blid06mx4o] {
    max-width: 560px;
}

.modal-content[b-blid06mx4o] {
    background: var(--card-bg);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

/* Header */
.modal-header[b-blid06mx4o] {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.05));
    border-bottom: 1px solid var(--border-light);
}

.header-content[b-blid06mx4o] {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.header-icon[b-blid06mx4o] {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(139, 92, 246, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.header-icon .bi[b-blid06mx4o] {
    font-size: 1.25rem;
    color: var(--accent-primary);
}

.modal-header h2[b-blid06mx4o] {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* Stepper Container */
.stepper-container[b-blid06mx4o] {
    padding: 1rem 2rem 1.25rem;
    background: var(--card-bg);
    border-bottom: 1px solid var(--border-light);
}

.stepper[b-blid06mx4o] {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.step[b-blid06mx4o] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: default;
    transition: all 0.2s;
}

.step.completed[b-blid06mx4o] {
    cursor: pointer;
}

@media (hover: hover) {
    .step.completed:hover .step-circle[b-blid06mx4o] {
        transform: scale(1.1);
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    }
}

.step-circle[b-blid06mx4o] {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
    background: var(--bg-tertiary);
    border: 2px solid var(--border-light);
    color: var(--text-muted);
}

.step.active .step-circle[b-blid06mx4o] {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: white;
    box-shadow: 0 2px 8px rgba(124, 105, 255, 0.3);
}

.step.completed .step-circle[b-blid06mx4o] {
    background: linear-gradient(135deg, var(--success), color-mix(in srgb, var(--success) 80%, black));
    border-color: var(--success);
    color: white;
}

.step.completed .step-circle .bi[b-blid06mx4o] {
    font-size: 1rem;
}

.step-label[b-blid06mx4o] {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

.step.active .step-label[b-blid06mx4o] {
    color: var(--accent-primary);
    font-weight: 600;
}

.step.completed .step-label[b-blid06mx4o] {
    color: var(--success);
}

/* Progress Line */
.step-line[b-blid06mx4o] {
    flex: 1;
    max-width: 80px;
    height: 3px;
    background: var(--border-light);
    margin: 17px 0.75rem 0;
    border-radius: 2px;
    overflow: hidden;
}

.step-line-fill[b-blid06mx4o] {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--success), var(--accent-primary));
    border-radius: 2px;
    transition: width 0.4s ease;
}

.step-line-fill.filled[b-blid06mx4o] {
    width: 100%;
}

.btn-close[b-blid06mx4o] {
    min-width: 48px;
    min-height: 48px;
    width: 48px;
    height: 48px;
    background: transparent;
    border: none;
    font-size: 1.25rem;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0;
    border-radius: 50%;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (hover: hover) {
    .btn-close:hover[b-blid06mx4o] {
        background: var(--bg-tertiary);
        color: var(--text-primary);
    }
}

/* Modal Body */
.modal-body[b-blid06mx4o] {
    padding: 1.25rem 2rem;
    overflow-y: auto;
    max-height: 58vh;
}

/* Sections */
.onboarding-section[b-blid06mx4o] {
    margin-bottom: 1.5rem;
}

.onboarding-section:last-of-type[b-blid06mx4o] {
    margin-bottom: 0;
}

.section-label[b-blid06mx4o] {
    font-size: 0.813rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    margin: 0 0 0.75rem 0;
}

.section-description[b-blid06mx4o] {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: -0.5rem 0 0.875rem 0;
}

/* Form Elements */
.form-row-three[b-blid06mx4o] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.form-row-two[b-blid06mx4o] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.form-row-two:last-child[b-blid06mx4o] {
    margin-bottom: 0;
}

.form-group[b-blid06mx4o] {
    display: flex;
    flex-direction: column;
}

.form-label[b-blid06mx4o] {
    font-size: 0.813rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.375rem;
}

/* Custom Number Input with Step Buttons */
.number-input-wrapper[b-blid06mx4o] {
    display: flex;
    align-items: stretch;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.number-input-wrapper:focus-within[b-blid06mx4o] {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(124, 105, 255, 0.1);
}

.number-input-wrapper .form-input[b-blid06mx4o] {
    border: none;
    border-radius: 0;
    padding: 0.75rem 0.25rem;
    text-align: center;
    background: transparent;
    width: 100%;
    /* Remove shadow from form-input focus since wrapper handles it */
    box-shadow: none;
}

.number-input-wrapper .form-input:focus[b-blid06mx4o] {
    box-shadow: none;
    background: transparent;
}

.btn-step[b-blid06mx4o] {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.25rem;
    font-weight: 500;
    padding: 0 0.75rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    user-select: none;
}

@media (hover: hover) {
    .btn-step:hover[b-blid06mx4o] {
        background: var(--hover-bg);
        color: var(--accent-primary);
    }
}

.btn-step:active[b-blid06mx4o] {
    background: rgba(124, 105, 255, 0.15);
}

/* Hide spin buttons */
input[type=number][b-blid06mx4o]::-webkit-inner-spin-button,
input[type=number][b-blid06mx4o]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type=number][b-blid06mx4o] {
    -moz-appearance: textfield;
}

.form-input[b-blid06mx4o] {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    padding: 0.75rem;
    font-size: 1rem;
    color: var(--text-primary);
    transition: all 0.2s;
}

.form-input:focus[b-blid06mx4o] {
    outline: none;
    border-color: var(--accent-primary);
    background: var(--card-bg);
    box-shadow: 0 0 0 3px rgba(124, 105, 255, 0.1);
}

/* Gender Selector */
.gender-selector[b-blid06mx4o] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.gender-btn[b-blid06mx4o] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1rem;
    background: var(--bg-tertiary);
    border: 2px solid var(--border-light);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s;
}

@media (hover: hover) {
    .gender-btn:hover[b-blid06mx4o] {
        border-color: var(--accent-primary);
        color: var(--text-primary);
    }
}

.gender-btn.selected[b-blid06mx4o] {
    border-color: var(--accent-primary);
    background: rgba(124, 105, 255, 0.1);
    color: var(--accent-primary);
}

.gender-btn .bi[b-blid06mx4o] {
    font-size: 1.25rem;
}

/* Experience Selector */
.experience-selector[b-blid06mx4o] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.experience-btn[b-blid06mx4o] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.375rem;
    padding: 0.875rem 0.5rem;
    background: var(--bg-tertiary);
    border: 2px solid var(--border-light);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

@media (hover: hover) {
    .experience-btn:hover[b-blid06mx4o] {
        border-color: var(--accent-primary);
        transform: translateY(-2px);
    }
}

.experience-btn.selected[b-blid06mx4o] {
    border-color: var(--accent-primary);
    background: rgba(124, 105, 255, 0.1);
}

.experience-btn .bi[b-blid06mx4o] {
    font-size: 1.5rem;
    color: var(--text-muted);
    transition: color 0.2s;
}

@media (hover: hover) {
    .experience-btn:hover .bi[b-blid06mx4o],
    .experience-btn.selected .bi[b-blid06mx4o] {
        color: var(--accent-primary);
    }
}

.experience-btn .exp-label[b-blid06mx4o] {
    font-size: 0.813rem;
    font-weight: 600;
    color: var(--text-primary);
}

.experience-btn .exp-desc[b-blid06mx4o] {
    font-size: 0.688rem;
    color: var(--text-muted);
}

.experience-btn.selected .exp-label[b-blid06mx4o] {
    color: var(--accent-primary);
}

/* Pre-populated Notice */
.pre-populated-notice[b-blid06mx4o] {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.875rem 1rem;
    background: var(--success-bg);
    border: 1px solid var(--success-border);
    border-radius: 10px;
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
    color: var(--success);
    animation: fadeIn-b-blid06mx4o 0.3s ease-out;
}

.pre-populated-notice .bi[b-blid06mx4o] {
    font-size: 1.125rem;
    flex-shrink: 0;
}

/* Modal Footer */
.modal-footer[b-blid06mx4o] {
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 1rem;
    background: var(--card-bg);
}

.btn-skip[b-blid06mx4o] {
    flex: 1;
    padding: 0.875rem 1rem;
    background: transparent;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    font-size: 0.938rem;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s;
}

@media (hover: hover) {
    .btn-skip:hover[b-blid06mx4o] {
        background: var(--bg-tertiary);
        color: var(--text-primary);
    }
}

.btn-save[b-blid06mx4o] {
    flex: 2;
    padding: 0.875rem 1.5rem;
    background: var(--accent-primary);
    border: none;
    border-radius: 12px;
    font-size: 0.938rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(124, 105, 255, 0.3);
}

@media (hover: hover) {
    .btn-save:hover[b-blid06mx4o] {
        background: var(--accent-secondary);
        transform: translateY(-1px);
        box-shadow: 0 6px 16px rgba(99, 102, 241, 0.4);
    }
}

.btn-save .bi[b-blid06mx4o] {
    font-size: 1.125rem;
}

/* Step Navigation Buttons */
.btn-next[b-blid06mx4o] {
    flex: 2;
    padding: 0.875rem 1.5rem;
    background: var(--accent-primary);
    border: none;
    border-radius: 12px;
    font-size: 0.938rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(124, 105, 255, 0.3);
}

@media (hover: hover) {
    .btn-next:hover[b-blid06mx4o] {
        background: var(--accent-secondary);
        transform: translateY(-1px);
        box-shadow: 0 6px 16px rgba(99, 102, 241, 0.4);
    }
}

.btn-next .bi[b-blid06mx4o] {
    font-size: 1rem;
}

.btn-back[b-blid06mx4o] {
    padding: 0.875rem 1rem;
    background: transparent;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    font-size: 0.938rem;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

@media (hover: hover) {
    .btn-back:hover[b-blid06mx4o] {
        background: var(--bg-tertiary);
        color: var(--text-primary);
    }
}

/* Animations */
@keyframes fadeIn-b-blid06mx4o {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp-b-blid06mx4o {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Fullscreen Modal */
@media (max-width: 767px) {
    .modal-backdrop[b-blid06mx4o] {
        padding: 0;
        align-items: stretch;
        touch-action: none;
    }

    .modal-dialog.onboarding-modal[b-blid06mx4o],
    .modal-dialog.onboarding-modal.step-2[b-blid06mx4o] {
        width: 100%;
        max-width: 100%;
        height: 100vh;
        height: 100dvh;
        max-height: 100vh;
        max-height: 100dvh;
        margin: 0;
    }

    .modal-content[b-blid06mx4o] {
        height: 100vh;
        height: 100dvh;
        max-height: 100vh;
        max-height: 100dvh;
        border-radius: 0;
        display: flex;
        flex-direction: column;
    }

    .modal-header[b-blid06mx4o] {
        padding: calc(env(safe-area-inset-top, 0px) + 1rem) 1rem 1rem;
        flex-shrink: 0;
    }

    .modal-body[b-blid06mx4o] {
        flex: 1;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding: 1rem;
        max-height: none;
    }

    .modal-footer[b-blid06mx4o] {
        padding: 1rem 1rem calc(env(safe-area-inset-bottom, 0px) + 1rem);
        flex-shrink: 0;
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .stepper-container[b-blid06mx4o] {
        padding: 0.875rem 1rem 1rem;
        flex-shrink: 0;
    }

    .step-circle[b-blid06mx4o] {
        width: 32px;
        height: 32px;
        font-size: 0.813rem;
    }

    .step-label[b-blid06mx4o] {
        font-size: 0.688rem;
    }

    .step-line[b-blid06mx4o] {
        max-width: 60px;
        margin: 15px 0.5rem 0;
    }

    .form-row-three[b-blid06mx4o] {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 0.5rem;
    }

    .form-row-two[b-blid06mx4o] {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }

    /* Experience selector stacks on mobile */
    .experience-selector[b-blid06mx4o] {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .experience-btn[b-blid06mx4o] {
        padding: 0.75rem 0.5rem;
        min-height: 48px;
    }

    .experience-btn .bi[b-blid06mx4o] {
        font-size: 1.25rem;
    }

    .experience-btn .exp-label[b-blid06mx4o] {
        font-size: 0.75rem;
    }

    .experience-btn .exp-desc[b-blid06mx4o] {
        font-size: 0.625rem;
    }

    .gender-btn[b-blid06mx4o] {
        min-height: 48px;
    }

    .btn-skip[b-blid06mx4o] {
        order: 2;
        flex: 1;
        min-height: 48px;
    }

    .btn-save[b-blid06mx4o] {
        order: 3;
        flex: 2;
        min-height: 48px;
    }

    .btn-next[b-blid06mx4o] {
        order: 2;
        flex: 2;
        min-height: 48px;
    }

    .btn-back[b-blid06mx4o] {
        order: 1;
        flex: 1;
        min-height: 48px;
    }
}

/* Calculated Weights Section */
.calculated-weights-section[b-blid06mx4o] {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.05));
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 1rem;
    margin-top: 1.5rem;
}

.calculated-weights-section .section-label[b-blid06mx4o] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-primary);
}

.calculated-weights-section .section-label .bi[b-blid06mx4o] {
    font-size: 1rem;
}

.calculated-weights-section .section-description[b-blid06mx4o] {
    margin-top: 0.25rem;
}

.btn-recalculate[b-blid06mx4o] {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    margin-top: 0.75rem;
    padding: 0.5rem 0.875rem;
    background: transparent;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-size: 0.813rem;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s;
}

@media (hover: hover) {
    .btn-recalculate:hover[b-blid06mx4o] {
        background: var(--bg-tertiary);
        border-color: var(--accent-primary);
        color: var(--accent-primary);
    }
}

.btn-recalculate .bi[b-blid06mx4o] {
    font-size: 0.875rem;
    transition: transform 0.3s;
}

@media (hover: hover) {
    .btn-recalculate:hover .bi[b-blid06mx4o] {
        transform: rotate(-180deg);
    }
}

/* Workout Defaults Collapsible Section */
.workout-defaults-section[b-blid06mx4o] {
    border: 1px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
    margin-top: 1rem;
}

.workout-defaults-section > summary[b-blid06mx4o] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1rem;
    cursor: pointer;
    background: var(--bg-tertiary);
    list-style: none;
    user-select: none;
    margin: 0;
}

.workout-defaults-section > summary[b-blid06mx4o]::-webkit-details-marker {
    display: none;
}

.workout-defaults-section > summary .bi:first-child[b-blid06mx4o] {
    font-size: 1rem;
    color: var(--text-muted);
}

.workout-defaults-section > summary .toggle-icon[b-blid06mx4o] {
    margin-left: auto;
    font-size: 0.875rem;
    color: var(--text-muted);
    transition: transform 0.2s;
}

.workout-defaults-section[open] > summary .toggle-icon[b-blid06mx4o] {
    transform: rotate(180deg);
}

@media (hover: hover) {
    .workout-defaults-section > summary:hover[b-blid06mx4o] {
        background: var(--bg-secondary);
    }
}

.details-content[b-blid06mx4o] {
    padding: 1rem;
    border-top: 1px solid var(--border-light);
    animation: slideDown-b-blid06mx4o 0.2s ease-out;
}

@keyframes slideDown-b-blid06mx4o {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dark mode adjustments */
:global(body.dark-theme) .calculated-weights-section[b-blid06mx4o] {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(139, 92, 246, 0.08));
    border-color: rgba(59, 130, 246, 0.3);
}
/* /Components/Pages/About.razor.rz.scp.css */
.about-container[b-27nlian8ya] {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.about-header[b-27nlian8ya] {
    text-align: center;
    margin-bottom: 3rem;
}

.page-title[b-27nlian8ya] {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.page-subtitle[b-27nlian8ya] {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.about-content[b-27nlian8ya] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-section[b-27nlian8ya] {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
}

.hero-section[b-27nlian8ya] {
    text-align: center;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: white;
    padding: 3rem 2rem;
}

.hero-icon[b-27nlian8ya] {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.mission-statement[b-27nlian8ya] {
    font-size: 1.125rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
    color: white;
}

.about-section h2[b-27nlian8ya] {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.hero-section h2[b-27nlian8ya] {
    color: white !important;
    font-size: 2rem !important;
    margin-bottom: 1rem !important;
}

.about-section p[b-27nlian8ya] {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.features-grid[b-27nlian8ya] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.feature-item[b-27nlian8ya] {
    background: var(--bg-tertiary);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

@media (hover: hover) {
    .feature-item:hover[b-27nlian8ya] {
        transform: translateY(-4px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
}

.feature-icon[b-27nlian8ya] {
    font-size: 2.5rem;
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

.feature-item h3[b-27nlian8ya] {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.feature-item p[b-27nlian8ya] {
    font-size: 0.938rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.benefits-list[b-27nlian8ya] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.benefit-item[b-27nlian8ya] {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefit-icon[b-27nlian8ya] {
    font-size: 1.5rem;
    color: var(--accent-primary);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.benefit-content h3[b-27nlian8ya] {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.benefit-content p[b-27nlian8ya] {
    font-size: 0.938rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.audience-list[b-27nlian8ya] {
    margin: 1rem 0 0 1.5rem;
    padding: 0;
}

.audience-list li[b-27nlian8ya] {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.commitment-section[b-27nlian8ya] {
    background: var(--bg-tertiary);
}

.cta-section[b-27nlian8ya] {
    text-align: center;
    border: 2px solid var(--accent-primary);
}

.cta-buttons[b-27nlian8ya] {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.btn[b-27nlian8ya] {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s;
}

.btn-primary[b-27nlian8ya] {
    background: var(--accent-gradient);
    color: white;
    border: none;
}

@media (hover: hover) {
    .btn-primary:hover[b-27nlian8ya] {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
}

.btn-secondary[b-27nlian8ya] {
    background: var(--card-bg);
    color: var(--accent-primary);
    border: 2px solid var(--accent-primary);
}

@media (hover: hover) {
    .btn-secondary:hover[b-27nlian8ya] {
        background: var(--accent-primary);
        color: white;
    }
}

.contact-section[b-27nlian8ya] {
    text-align: center;
}

.contact-link[b-27nlian8ya] {
    display: inline-flex;
    align-items: center;
    color: var(--accent-primary);
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: 1rem;
    transition: color 0.2s;
}

@media (hover: hover) {
    .contact-link:hover[b-27nlian8ya] {
        color: var(--accent-secondary);
    }
}

@media (max-width: 768px) {
    .about-container[b-27nlian8ya] {
        padding: 1rem;
    }

    .page-title[b-27nlian8ya] {
        font-size: 2rem;
    }

    .about-section[b-27nlian8ya] {
        padding: 1.5rem;
    }

    .hero-section[b-27nlian8ya] {
        padding: 2rem 1.5rem;
    }

    .hero-icon[b-27nlian8ya] {
        font-size: 3rem;
    }

    .hero-section h2[b-27nlian8ya] {
        font-size: 1.5rem;
    }

    .mission-statement[b-27nlian8ya] {
        font-size: 1rem;
    }

    .features-grid[b-27nlian8ya] {
        grid-template-columns: 1fr;
    }

    .cta-buttons[b-27nlian8ya] {
        flex-direction: column;
    }

    .btn[b-27nlian8ya] {
        width: 100%;
        justify-content: center;
    }
}
/* /Components/Pages/ActiveSession.razor.rz.scp.css */
/* Active Session Page - Compact Design */
.active-session-container[b-zgjerj34zf] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

/* Compact Header */
.session-header-compact[b-zgjerj34zf] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--card-bg);
    border-radius: 12px;
    margin-bottom: 0.75rem;
    border: 1px solid var(--border-color);
}

.btn-back-compact[b-zgjerj34zf] {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    transition: color 0.2s;
}

@media (hover: hover) {
    .btn-back-compact:hover[b-zgjerj34zf] {
        color: var(--accent-primary);
    }
}

.session-title-compact[b-zgjerj34zf] {
    flex: 1;
}

.session-title-compact h1[b-zgjerj34zf] {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.25rem 0;
    color: var(--text-primary);
}

.session-timer[b-zgjerj34zf] {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.btn-finish-compact[b-zgjerj34zf] {
    background: #198754;
    border: none;
    color: white;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.2s;
}

@media (hover: hover) {
    .btn-finish-compact:hover[b-zgjerj34zf] {
        background: #157347;
        transform: scale(1.05);
    }
}

/* Progress Bar Compact */
.progress-bar-compact[b-zgjerj34zf] {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 0.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    height: 36px;
    overflow: hidden;
}

.progress-fill-compact[b-zgjerj34zf] {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-primary), #198754);
    transition: width 0.4s ease;
    border-radius: 20px;
}

.progress-text-compact[b-zgjerj34zf] {
    position: relative;
    z-index: 1;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* Exercises Compact */
.exercises-compact[b-zgjerj34zf] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.exercise-compact[b-zgjerj34zf] {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 0.75rem;
    transition: all 0.2s;
}

.exercise-compact.all-completed[b-zgjerj34zf] {
    border-color: #198754;
    background: rgba(25, 135, 84, 0.08);
}

.exercise-title-compact[b-zgjerj34zf] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.exercise-header-with-image[b-zgjerj34zf] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.exercise-actions-compact[b-zgjerj34zf] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-delete-exercise-compact[b-zgjerj34zf] {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.25rem;
    transition: all 0.2s;
    opacity: 0.6;
}

@media (hover: hover) {
    .btn-delete-exercise-compact:hover[b-zgjerj34zf] {
        color: #dc3545;
        opacity: 1;
        transform: scale(1.1);
    }
}

.exercise-image-compact[b-zgjerj34zf] {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: contain;
    border: 1px solid var(--border-color);
    background: var(--bg-secondary);
    padding: 2px;
}

.exercise-name-compact[b-zgjerj34zf] {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-primary);
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
}

@media (hover: hover) {
    .exercise-name-compact:hover[b-zgjerj34zf] {
        color: var(--accent-secondary);
        text-decoration: underline;
    }
}

.btn-check-all[b-zgjerj34zf] {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    transition: all 0.2s;
}

@media (hover: hover) {
    .btn-check-all:hover[b-zgjerj34zf] {
        color: #198754;
        transform: scale(1.1);
    }
}

.exercise-compact.all-completed .btn-check-all[b-zgjerj34zf] {
    color: #198754;
}

/* Sets Compact */
.sets-compact[b-zgjerj34zf] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.set-compact[b-zgjerj34zf] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    background: var(--bg-secondary);
    border-radius: 8px;
    transition: all 0.2s;
}

@media (hover: hover) {
    .set-compact:hover[b-zgjerj34zf] {
        background: var(--hover-bg);
    }
}

.set-compact.set-completed[b-zgjerj34zf] {
    background: rgba(25, 135, 84, 0.15);
    border-left: 3px solid #198754;
}

.set-info-compact[b-zgjerj34zf] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

.set-num-compact[b-zgjerj34zf] {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-primary);
    width: 20px;
    text-align: center;
}

.input-compact[b-zgjerj34zf] {
    padding: 0.4rem 0.5rem;
    border: 1px solid var(--input-border);
    border-radius: 6px;
    font-size: 0.95rem;
    text-align: center;
    background: var(--input-bg);
    color: var(--text-primary);
    font-weight: 600;
}

.input-compact:focus[b-zgjerj34zf] {
    outline: none;
    border-color: var(--accent-primary);
}

/* Hide number input spinner arrows */
.input-compact[b-zgjerj34zf]::-webkit-outer-spin-button,
.input-compact[b-zgjerj34zf]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.input-compact[type=number][b-zgjerj34zf] {
    -moz-appearance: textfield;
    appearance: textfield;
}

.input-weight[b-zgjerj34zf] {
    width: 60px;
}

.input-reps[b-zgjerj34zf] {
    width: 50px;
}

.separator-compact[b-zgjerj34zf] {
    font-weight: 700;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.label-compact[b-zgjerj34zf] {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.set-actions-compact[b-zgjerj34zf] {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.btn-check-compact[b-zgjerj34zf] {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    transition: all 0.2s;
}

@media (hover: hover) {
    .btn-check-compact:hover[b-zgjerj34zf] {
        color: #198754;
        transform: scale(1.1);
    }
}

.btn-check-compact.checked[b-zgjerj34zf] {
    color: #198754;
}

.btn-delete-compact[b-zgjerj34zf] {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0;
    transition: all 0.2s;
}

@media (hover: hover) {
    .btn-delete-compact:hover[b-zgjerj34zf] {
        color: #dc3545;
        transform: scale(1.1);
    }
}

.btn-add-set-compact[b-zgjerj34zf] {
    margin-top: 0.25rem;
    padding: 0.5rem;
    background: var(--hover-bg);
    color: var(--text-secondary);
    border: 1px dashed var(--border-color);
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

@media (hover: hover) {
    .btn-add-set-compact:hover[b-zgjerj34zf] {
        background: var(--border-color);
        border-color: var(--accent-primary);
        color: var(--accent-primary);
    }
}

.btn-add-exercise-compact[b-zgjerj34zf] {
    width: 100%;
    margin-top: 0.75rem;
    padding: 0.75rem;
    background: var(--accent-primary);
    color: white;
    border: 1px solid var(--accent-primary);
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

@media (hover: hover) {
    .btn-add-exercise-compact:hover[b-zgjerj34zf] {
        background: var(--accent-secondary);
        border-color: var(--accent-secondary);
        transform: scale(1.02);
    }
}

/* Exercise Notes Compact */
.exercise-notes-compact[b-zgjerj34zf] {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-color);
}

.notes-textarea[b-zgjerj34zf] {
    width: 100%;
    min-height: 60px;
    padding: 0.5rem;
    border: 1px solid var(--input-border);
    border-radius: 6px;
    background: var(--input-bg);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.9rem;
    line-height: 1.4;
    resize: vertical;
    transition: border-color 0.2s;
}

.notes-textarea:focus[b-zgjerj34zf] {
    outline: none;
    border-color: var(--accent-primary);
}

.notes-textarea[b-zgjerj34zf]::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

/* Notes Button */
.btn-notes[b-zgjerj34zf] {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1rem;
    cursor: pointer;
    padding: 0.25rem;
    margin-left: 0.5rem;
    border-radius: 4px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (hover: hover) {
    .btn-notes:hover[b-zgjerj34zf] {
        background: var(--hover-bg);
        color: var(--accent-primary);
        transform: scale(1.1);
    }
}

/* Notes Modal */
.notes-modal-overlay[b-zgjerj34zf] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn-b-zgjerj34zf 0.2s ease-in;
}

.notes-modal-content[b-zgjerj34zf] {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn-b-zgjerj34zf 0.3s ease-out;
}

@keyframes modalSlideIn-b-zgjerj34zf {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.notes-modal-header[b-zgjerj34zf] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-tertiary);
}

.notes-modal-header h3[b-zgjerj34zf] {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
}

.btn-close-notes[b-zgjerj34zf] {
    min-width: 48px;
    min-height: 48px;
    width: 48px;
    height: 48px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 50%;
    color: var(--text-secondary);
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.2s;
}

@media (hover: hover) {
    .btn-close-notes:hover[b-zgjerj34zf] {
        background: var(--hover-bg);
        color: var(--text-primary);
    }
}

.notes-modal-body[b-zgjerj34zf] {
    padding: 1.5rem;
}

.notes-modal-textarea[b-zgjerj34zf] {
    width: 100%;
    min-height: 120px;
    padding: 0.75rem;
    border: 1px solid var(--input-border);
    border-radius: 8px;
    background: var(--input-bg);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    line-height: 1.5;
    resize: vertical;
    transition: border-color 0.2s;
}

.notes-modal-textarea:focus[b-zgjerj34zf] {
    outline: none;
    border-color: var(--accent-primary);
}

.notes-modal-textarea[b-zgjerj34zf]::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

.notes-modal-footer[b-zgjerj34zf] {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border-color);
    background: var(--bg-tertiary);
}

.notes-character-count[b-zgjerj34zf] {
    text-align: right;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
    font-weight: 500;
}

.btn-notes-save[b-zgjerj34zf] {
    padding: 0.5rem 1.25rem;
    background: var(--accent-primary);
    color: white;
    border: 1px solid var(--accent-primary);
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

@media (hover: hover) {
    .btn-notes-save:hover[b-zgjerj34zf] {
        background: var(--accent-secondary);
        border-color: var(--accent-secondary);
        transform: translateY(-1px);
    }
}

.btn-notes-cancel[b-zgjerj34zf] {
    padding: 0.5rem 1.25rem;
    background: var(--card-bg);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

@media (hover: hover) {
    .btn-notes-cancel:hover[b-zgjerj34zf] {
        background: var(--hover-bg);
        border-color: var(--accent-primary);
        color: var(--accent-primary);
    }
}

.btn-delete-confirm[b-zgjerj34zf] {
    padding: 0.5rem 1.25rem;
    background: #dc3545;
    color: white;
    border: 1px solid #dc3545;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

@media (hover: hover) {
    .btn-delete-confirm:hover[b-zgjerj34zf] {
        background: #c82333;
        border-color: #c82333;
        transform: scale(1.02);
    }
}

/* Add Exercise Modal */
.add-exercise-modal-content[b-zgjerj34zf] {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn-b-zgjerj34zf 0.3s ease-out;
}

.add-exercise-modal-content .notes-modal-body[b-zgjerj34zf] {
    max-height: 60vh;
    overflow-y: auto;
}

/* Mobile Fullscreen Modal */
@media (max-width: 767px) {
    .notes-modal-overlay[b-zgjerj34zf] {
        padding: 0;
        align-items: stretch;
    }

    .notes-modal-content[b-zgjerj34zf],
    .add-exercise-modal-content[b-zgjerj34zf] {
        width: 100%;
        max-width: 100%;
        height: 100%;
        max-height: 100%;
        margin: 0;
        border-radius: 0;
        display: flex;
        flex-direction: column;
    }

    .notes-modal-header[b-zgjerj34zf] {
        padding: calc(env(safe-area-inset-top, 0px) + 1rem) 1rem 1rem;
        flex-shrink: 0;
    }

    .notes-modal-body[b-zgjerj34zf] {
        flex: 1;
        overflow-y: auto;
        padding: 1.25rem 1rem;
    }

    .add-exercise-modal-content .notes-modal-body[b-zgjerj34zf] {
        max-height: none;
    }

    .notes-modal-footer[b-zgjerj34zf] {
        padding: 1rem 1rem calc(env(safe-area-inset-bottom, 0px) + 1rem);
        flex-shrink: 0;
    }

    .btn-notes-save[b-zgjerj34zf],
    .btn-notes-cancel[b-zgjerj34zf],
    .btn-delete-confirm[b-zgjerj34zf] {
        min-height: 48px;
        flex: 1;
    }
}

/* Actions Compact */
.actions-compact[b-zgjerj34zf] {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-complete-compact[b-zgjerj34zf] {
    width: 100%;
    padding: 0.75rem;
    background: #198754;
    color: white;
    border: 1px solid #198754;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

@media (hover: hover) {
    .btn-complete-compact:hover[b-zgjerj34zf] {
        background: #157347;
        border-color: #157347;
        transform: scale(1.02);
    }
}

.btn-abandon-compact[b-zgjerj34zf] {
    width: 100%;
    padding: 0.75rem;
    background: var(--card-bg);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

@media (hover: hover) {
    .btn-abandon-compact:hover[b-zgjerj34zf] {
        background: #dc3545;
        color: white;
        border-color: #dc3545;
    }
}

/* Celebration Animation */
.celebration-overlay[b-zgjerj34zf] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn-b-zgjerj34zf 0.3s ease-in;
}

/* Level-specific backgrounds */
.celebration-level-0[b-zgjerj34zf] {
    background: rgba(60, 60, 60, 0.95);
}

.celebration-level-1[b-zgjerj34zf] {
    background: rgba(80, 60, 50, 0.9);
}

.celebration-level-2[b-zgjerj34zf] {
    background: rgba(100, 80, 50, 0.9);
}

.celebration-level-3[b-zgjerj34zf] {
    background: rgba(50, 80, 120, 0.9);
}

.celebration-level-4[b-zgjerj34zf] {
    background: rgba(255, 100, 50, 0.85);
}

.celebration-level-5[b-zgjerj34zf] {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.9), rgba(255, 20, 147, 0.9));
}

.celebration-level-6[b-zgjerj34zf] {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.95), rgba(255, 140, 0, 0.95), rgba(255, 69, 0, 0.95));
    animation: fadeIn-b-zgjerj34zf 0.3s ease-in, rainbowPulse-b-zgjerj34zf 2s ease-in-out infinite;
}

@keyframes rainbowPulse-b-zgjerj34zf {
    0%, 100% {
        filter: brightness(1) hue-rotate(0deg);
    }
    50% {
        filter: brightness(1.2) hue-rotate(20deg);
    }
}

@keyframes fadeIn-b-zgjerj34zf {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.celebration-content[b-zgjerj34zf] {
    text-align: center;
    z-index: 10000;
    animation: bounceIn-b-zgjerj34zf 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes bounceIn-b-zgjerj34zf {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.celebration-icon[b-zgjerj34zf] {
    font-size: 8rem;
    margin-bottom: 1rem;
}

/* Level-specific icon animations */
.celebration-level-0 .celebration-icon[b-zgjerj34zf] {
    animation: slowFade-b-zgjerj34zf 2s ease-in-out;
    opacity: 0.5;
}

.celebration-level-1 .celebration-icon[b-zgjerj34zf] {
    animation: disappointed-b-zgjerj34zf 1.5s ease-in-out infinite;
}

.celebration-level-2 .celebration-icon[b-zgjerj34zf] {
    animation: shakeHead-b-zgjerj34zf 1s ease-in-out infinite;
}

.celebration-level-3 .celebration-icon[b-zgjerj34zf] {
    animation: nod-b-zgjerj34zf 1.5s ease-in-out infinite;
}

.celebration-level-4 .celebration-icon[b-zgjerj34zf] {
    animation: burn-b-zgjerj34zf 0.8s ease-in-out infinite;
}

.celebration-level-5 .celebration-icon[b-zgjerj34zf] {
    animation: spin360-b-zgjerj34zf 2s ease-in-out infinite;
}

.celebration-level-6 .celebration-icon[b-zgjerj34zf] {
    animation: epicScale-b-zgjerj34zf 1s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.8));
}

@keyframes slowFade-b-zgjerj34zf {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.5; }
}

@keyframes disappointed-b-zgjerj34zf {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

@keyframes shakeHead-b-zgjerj34zf {
    0%, 100% { transform: rotate(-15deg); }
    50% { transform: rotate(15deg); }
}

@keyframes nod-b-zgjerj34zf {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.05); }
}

@keyframes burn-b-zgjerj34zf {
    0%, 100% { transform: scale(1) rotate(-5deg); }
    25% { transform: scale(1.1) rotate(5deg); }
    75% { transform: scale(1.05) rotate(-3deg); }
}

@keyframes spin360-b-zgjerj34zf {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
    100% { transform: rotate(360deg) scale(1); }
}

@keyframes epicScale-b-zgjerj34zf {
    0%, 100% {
        transform: scale(1) rotate(-10deg);
    }
    25% {
        transform: scale(1.3) rotate(10deg);
    }
    75% {
        transform: scale(1.2) rotate(-5deg);
    }
}

.celebration-title[b-zgjerj34zf] {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin: 0 0 1rem 0;
}

/* Level-specific title styles */
.celebration-level-0 .celebration-title[b-zgjerj34zf] {
    color: #888;
    text-shadow: none;
    animation: none;
}

.celebration-level-1 .celebration-title[b-zgjerj34zf],
.celebration-level-2 .celebration-title[b-zgjerj34zf] {
    color: #ffb347;
    text-shadow: 0 0 10px rgba(255, 179, 71, 0.5);
    animation: subtle-b-zgjerj34zf 2s ease-in-out infinite;
}

.celebration-level-3 .celebration-title[b-zgjerj34zf] {
    color: #4ec9ff;
    text-shadow: 0 0 15px rgba(78, 201, 255, 0.6);
    animation: pulse-b-zgjerj34zf 1.5s ease-in-out infinite;
}

.celebration-level-4 .celebration-title[b-zgjerj34zf] {
    color: #ff6b35;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.8);
    animation: fireGlow-b-zgjerj34zf 1s ease-in-out infinite;
}

.celebration-level-5 .celebration-title[b-zgjerj34zf] {
    background: linear-gradient(90deg, #ff6ec7, #ffdb58, #00d9ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer-b-zgjerj34zf 2s linear infinite;
    background-size: 200% 100%;
}

.celebration-level-6 .celebration-title[b-zgjerj34zf] {
    background: linear-gradient(90deg, #ffd700, #ff8c00, #ff1493, #ffd700);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: epicShimmer-b-zgjerj34zf 1.5s linear infinite, epicBounce-b-zgjerj34zf 0.5s ease-in-out infinite;
    background-size: 300% 100%;
    font-size: 3.5rem;
    text-shadow: 0 0 40px rgba(255, 215, 0, 1);
}

@keyframes subtle-b-zgjerj34zf {
    0%, 100% { opacity: 0.9; }
    50% { opacity: 1; }
}

@keyframes pulse-b-zgjerj34zf {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes fireGlow-b-zgjerj34zf {
    0%, 100% {
        transform: scale(1);
        text-shadow: 0 0 20px rgba(255, 107, 53, 0.8);
    }
    50% {
        transform: scale(1.08);
        text-shadow: 0 0 30px rgba(255, 107, 53, 1), 0 0 50px rgba(255, 69, 0, 0.5);
    }
}

@keyframes shimmer-b-zgjerj34zf {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

@keyframes epicShimmer-b-zgjerj34zf {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

@keyframes epicBounce-b-zgjerj34zf {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.celebration-message[b-zgjerj34zf] {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 600;
    margin: 0;
}

.confetti-container[b-zgjerj34zf] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 9998;
}

.confetti[b-zgjerj34zf] {
    position: absolute;
    top: -10%;
    width: 10px;
    height: 10px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #ffeaa7, #dfe6e9);
    animation: confettiFall-b-zgjerj34zf 3s linear forwards;
    opacity: 0.8;
}

.confetti:nth-child(2n)[b-zgjerj34zf] {
    background: linear-gradient(45deg, #a29bfe, #fd79a8, #fdcb6e, #e17055);
}

.confetti:nth-child(3n)[b-zgjerj34zf] {
    background: linear-gradient(45deg, #00b894, #00cec9, #0984e3, #6c5ce7);
    width: 8px;
    height: 8px;
}

.confetti:nth-child(4n)[b-zgjerj34zf] {
    border-radius: 50%;
}

@keyframes confettiFall-b-zgjerj34zf {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(110vh) rotate(720deg);
        opacity: 0;
    }
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .active-session-container[b-zgjerj34zf] {
        padding: 0.5rem;
    }

    .session-header-compact[b-zgjerj34zf] {
        padding: 0.75rem;
    }

    .session-title-compact h1[b-zgjerj34zf] {
        font-size: 1.1rem;
    }

    .input-weight[b-zgjerj34zf],
    .input-reps[b-zgjerj34zf] {
        width: 55px;
        font-size: 0.9rem;
    }

    .celebration-title[b-zgjerj34zf] {
        font-size: 2rem;
    }

    .celebration-message[b-zgjerj34zf] {
        font-size: 1.2rem;
    }

    .celebration-icon[b-zgjerj34zf] {
        font-size: 5rem;
    }
}

/* Shared session header styles (used in both active session and history) */
.session-header[b-zgjerj34zf] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
}

.header-left[b-zgjerj34zf] {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.btn-back-nav[b-zgjerj34zf] {
    background: #6c757d;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: background 0.2s;
    flex-shrink: 0;
}

@media (hover: hover) {
    .btn-back-nav:hover[b-zgjerj34zf] {
        background: #5a6268;
    }
}

.header-info h1[b-zgjerj34zf] {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.session-meta[b-zgjerj34zf] {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.header-actions[b-zgjerj34zf] {
    display: flex;
    gap: 0.75rem;
}

.btn-abandon[b-zgjerj34zf] {
    padding: 0.6rem 1.25rem;
    background: #6c757d;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
}

@media (hover: hover) {
    .btn-abandon:hover[b-zgjerj34zf] {
        background: #5a6268;
    }
}

.btn-complete[b-zgjerj34zf] {
    padding: 0.6rem 1.25rem;
    background: #198754;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
}

@media (hover: hover) {
    .btn-complete:hover[b-zgjerj34zf] {
        background: #157347;
    }
}

.exercises-overview[b-zgjerj34zf] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.exercise-card[b-zgjerj34zf] {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.exercise-card.expanded[b-zgjerj34zf] {
    border-color: var(--accent-primary);
}

.exercise-card.completed[b-zgjerj34zf] {
    border-color: #198754;
    background: rgba(25, 135, 84, 0.15);
}

.exercise-card.completed .exercise-header[b-zgjerj34zf] {
    background: rgba(25, 135, 84, 0.15);
}

.exercise-header[b-zgjerj34zf] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    cursor: pointer;
    background: var(--bg-tertiary);
    transition: background 0.2s;
}

@media (hover: hover) {
    .exercise-header:hover[b-zgjerj34zf] {
        background: var(--bg-secondary);
    }
}

.exercise-header-left[b-zgjerj34zf] {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    cursor: pointer;
}

.exercise-header-right[b-zgjerj34zf] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.exercise-checkbox[b-zgjerj34zf] {
    display: flex;
    align-items: center;
    justify-content: center;
}

.exercise-check[b-zgjerj34zf] {
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.exercise-header h3[b-zgjerj34zf] {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-primary);
}

.exercise-meta[b-zgjerj34zf] {
    margin: 0.25rem 0 0 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.progress-indicator[b-zgjerj34zf] {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.progress-circle[b-zgjerj34zf] {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: conic-gradient(var(--accent-primary) var(--progress), #e9ecef var(--progress));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.progress-circle[b-zgjerj34zf]::before {
    content: '';
    position: absolute;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--card-bg);
}

.progress-circle span[b-zgjerj34zf] {
    position: relative;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
}

.sets-container[b-zgjerj34zf] {
    padding: 1.25rem;
    background: var(--card-bg);
}

.sets-table-header[b-zgjerj34zf] {
    display: grid;
    grid-template-columns: 40px 80px 80px 50px 60px;
    gap: 0.75rem;
    padding: 0.75rem;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 0.5rem;
}

.set-row[b-zgjerj34zf] {
    display: grid;
    grid-template-columns: 40px 80px 80px 50px 60px;
    gap: 0.75rem;
    padding: 0.75rem;
    align-items: center;
    border-radius: 6px;
    transition: background 0.2s;
}

@media (hover: hover) {
    .set-row:hover[b-zgjerj34zf] {
        background: var(--bg-secondary);
    }
}

.set-row.completed[b-zgjerj34zf] {
    background: rgba(25, 135, 84, 0.15);
}

@media (hover: hover) {
    .set-row.completed:hover[b-zgjerj34zf] {
        background: rgba(25, 135, 84, 0.25);
    }
}

.set-number[b-zgjerj34zf] {
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
}

.set-input[b-zgjerj34zf] {
    padding: 0.4rem;
    border: 1px solid var(--input-border);
    border-radius: 6px;
    font-size: 0.9rem;
    width: 100%;
    text-align: center;
    background: var(--input-bg);
    color: var(--text-primary);
}

.set-input:focus[b-zgjerj34zf] {
    outline: none;
    border-color: var(--accent-primary);
}

.set-actions[b-zgjerj34zf] {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
}

.set-checkbox[b-zgjerj34zf] {
    display: flex;
    align-items: center;
    justify-content: center;
}

.set-checkbox input[type="checkbox"][b-zgjerj34zf] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.btn-delete-set[b-zgjerj34zf] {
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    font-size: 1rem;
    transition: color 0.2s;
}

@media (hover: hover) {
    .btn-delete-set:hover[b-zgjerj34zf] {
        color: #bb2d3b;
    }
}

.btn-add-set[b-zgjerj34zf] {
    margin-top: 1rem;
    padding: 0.6rem 1rem;
    background: #6c757d;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background 0.2s;
    display: flex;
    align-items: center;
}

@media (hover: hover) {
    .btn-add-set:hover[b-zgjerj34zf] {
        background: #5a6268;
    }
}

.overall-progress[b-zgjerj34zf] {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.progress-bar-container[b-zgjerj34zf] {
    width: 100%;
    height: 20px;
    background: var(--bg-secondary);
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar[b-zgjerj34zf] {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-primary), rgba(124, 105, 255, 0.65));
    transition: width 0.3s;
    border-radius: 10px;
}

.progress-text[b-zgjerj34zf] {
    text-align: center;
    font-weight: 600;
    color: var(--text-primary);
}

/* Alternative Exercise Switching */
.exercise-name-container[b-zgjerj34zf] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

.alternative-switcher[b-zgjerj34zf] {
    position: relative;
    display: inline-flex;
    margin-left: 0.5rem;
}

.alternative-dropdown-overlay[b-zgjerj34zf] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: transparent;
}

.btn-alternative-toggle[b-zgjerj34zf] {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--accent-primary);
    padding: 0.375rem 0.625rem;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

@media (hover: hover) {
    .btn-alternative-toggle:hover[b-zgjerj34zf] {
        background: var(--bg-hover);
        border-color: var(--accent-primary);
        transform: translateY(-1px);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
}

.btn-alternative-toggle:active[b-zgjerj34zf] {
    transform: translateY(0);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.alternative-dropdown[b-zgjerj34zf] {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    min-width: 280px;
    max-width: 320px;
    overflow: hidden;
    animation: dropdownFadeIn-b-zgjerj34zf 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: 400px;
    overflow-y: auto;
}

@keyframes dropdownFadeIn-b-zgjerj34zf {
    from {
        opacity: 0;
        transform: translateY(-12px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.alternative-dropdown-header[b-zgjerj34zf] {
    padding: 0.875rem 1rem;
    background: var(--bg-secondary);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--border-color);
}

.alternative-option[b-zgjerj34zf] {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem 1rem;
    border: none;
    background: transparent;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: all 0.15s ease;
    border-bottom: 1px solid rgba(var(--border-rgb, 0, 0, 0), 0.06);
    position: relative;
}

.alternative-option:last-child[b-zgjerj34zf] {
    border-bottom: none;
}

@media (hover: hover) {
    .alternative-option:hover[b-zgjerj34zf] {
        background: var(--bg-hover);
    }
}

.alternative-option.current[b-zgjerj34zf] {
    background: linear-gradient(90deg, rgba(var(--accent-rgb), 0.08) 0%, rgba(var(--accent-rgb), 0.04) 100%);
    border-left: 3px solid var(--accent-primary);
    padding-left: calc(1rem - 3px);
}

@media (hover: hover) {
    .alternative-option.current:hover[b-zgjerj34zf] {
        background: linear-gradient(90deg, rgba(var(--accent-rgb), 0.12) 0%, rgba(var(--accent-rgb), 0.06) 100%);
    }
}

.alternative-image[b-zgjerj34zf] {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid rgba(var(--border-rgb, 0, 0, 0), 0.1);
}

.alternative-option .alternative-name[b-zgjerj34zf] {
    flex: 1;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.4;
}

.alternative-option.current .alternative-name[b-zgjerj34zf] {
    color: var(--accent-primary);
    font-weight: 600;
}

.current-indicator[b-zgjerj34zf] {
    color: var(--accent-primary);
    font-size: 1.125rem;
    flex-shrink: 0;
}

/* Responsive adjustments for alternative switching */
@media (max-width: 768px) {
    .alternative-dropdown[b-zgjerj34zf] {
        min-width: 260px;
        max-width: 280px;
        left: 50%;
        transform: translateX(-50%);
    }

    .alternative-dropdown-header[b-zgjerj34zf] {
        padding: 0.75rem 0.875rem;
        font-size: 0.8125rem;
    }

    .alternative-option[b-zgjerj34zf] {
        padding: 0.75rem 0.875rem;
        gap: 0.75rem;
    }

    .alternative-option.current[b-zgjerj34zf] {
        padding-left: calc(0.875rem - 3px);
    }

    .alternative-image[b-zgjerj34zf] {
        width: 36px;
        height: 36px;
    }

    .alternative-option .alternative-name[b-zgjerj34zf] {
        font-size: 0.875rem;
    }

    .btn-alternative-toggle[b-zgjerj34zf] {
        padding: 0.3125rem 0.5rem;
        font-size: 0.875rem;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .session-header[b-zgjerj34zf] {
        flex-direction: column;
        gap: 1rem;
    }

    .header-actions[b-zgjerj34zf] {
        width: 100%;
    }

    .btn-abandon[b-zgjerj34zf], .btn-complete[b-zgjerj34zf] {
        flex: 1;
    }

    .sets-table-header[b-zgjerj34zf] {
        grid-template-columns: 35px 70px 70px 40px 50px;
        gap: 0.5rem;
        font-size: 0.75rem;
    }

    .set-row[b-zgjerj34zf] {
        grid-template-columns: 35px 70px 70px 40px 50px;
        gap: 0.5rem;
    }

    .set-number[b-zgjerj34zf] {
        font-size: 1rem;
    }

    .set-input[b-zgjerj34zf] {
        font-size: 0.85rem;
        padding: 0.3rem;
    }
}
/* /Components/Pages/Analytics.razor.rz.scp.css */
/* Analytics Container */
.analytics-container[b-ovyb9hbl9n] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.analytics-header[b-ovyb9hbl9n] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 30px;
}

.analytics-header h1[b-ovyb9hbl9n] {
    margin: 0;
    font-size: 2rem;
    font-weight: 600;
    white-space: nowrap;
}

.btn-back[b-ovyb9hbl9n] {
    padding: 0.5rem 0.75rem;
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    min-height: 40px;
}

@media (hover: hover) {
    .btn-back:hover[b-ovyb9hbl9n] {
        background: var(--bg-hover);
        border-color: var(--accent-primary);
    }
}

/* Stats Grid */
.stats-grid[b-ovyb9hbl9n] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

/* Chart Sections */
.chart-section[b-ovyb9hbl9n] {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
}

.chart-section h3[b-ovyb9hbl9n] {
    margin: 0 0 20px 0;
    font-size: 1.3rem;
    font-weight: 600;
}

/* Simple Bar Chart */
.simple-chart[b-ovyb9hbl9n] {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 250px;
    padding: 20px 0;
}

.chart-bar-container[b-ovyb9hbl9n] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.chart-bar-wrapper[b-ovyb9hbl9n] {
    flex: 1;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.chart-bar[b-ovyb9hbl9n] {
    width: 80%;
    background: linear-gradient(to top, var(--accent-secondary), var(--accent-primary));
    border-radius: 4px 4px 0 0;
    position: relative;
    transition: all 0.3s ease;
    min-height: 4px;
}

@media (hover: hover) {
    .chart-bar:hover[b-ovyb9hbl9n] {
        opacity: 0.8;
    }
}

.chart-bar-value[b-ovyb9hbl9n] {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
}

.chart-bar-label[b-ovyb9hbl9n] {
    margin-top: 8px;
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Activity Heatmap */
.activity-heatmap[b-ovyb9hbl9n] {
    padding: 10px 0;
}

.heatmap-with-years[b-ovyb9hbl9n] {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.heatmap-container[b-ovyb9hbl9n] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: fit-content;
}

.heatmap-months[b-ovyb9hbl9n] {
    padding-left: 32px;
}

.heatmap-month-labels[b-ovyb9hbl9n] {
    display: flex;
    gap: 4px;
}

.heatmap-month-label[b-ovyb9hbl9n] {
    width: 14px;
    font-size: 11px;
    color: var(--text-secondary);
    font-weight: 600;
    text-align: left;
}

.heatmap-grid[b-ovyb9hbl9n] {
    display: flex;
    gap: 4px;
    padding: 5px 0;
    width: fit-content;
}

.heatmap-days-labels[b-ovyb9hbl9n] {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-right: 4px;
    justify-content: space-around;
}

.heatmap-day-label[b-ovyb9hbl9n] {
    height: 14px;
    font-size: 10px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    line-height: 14px;
}

.heatmap-weeks[b-ovyb9hbl9n] {
    display: flex;
    gap: 4px;
}

.heatmap-week[b-ovyb9hbl9n] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.heatmap-day[b-ovyb9hbl9n] {
    width: 14px;
    height: 14px;
    border-radius: 2px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: 1px solid rgba(27, 31, 35, 0.06);
}

.year-selector[b-ovyb9hbl9n] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 20px;
}

.year-btn[b-ovyb9hbl9n] {
    padding: 4px 10px;
    background-color: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

@media (hover: hover) {
    .year-btn:hover[b-ovyb9hbl9n] {
        color: var(--accent-primary);
    }
}

.year-btn.active[b-ovyb9hbl9n] {
    color: var(--accent-primary);
}

.heatmap-day.level-0[b-ovyb9hbl9n] {
    background-color: var(--hover-bg);
}

.heatmap-day.level-1[b-ovyb9hbl9n] {
    background-color: #9be9a8;
}

.heatmap-day.level-2[b-ovyb9hbl9n] {
    background-color: #40c463;
}

.heatmap-day.level-3[b-ovyb9hbl9n] {
    background-color: #30a14e;
}

.heatmap-day.level-4[b-ovyb9hbl9n] {
    background-color: #216e39;
}

.heatmap-day.today[b-ovyb9hbl9n] {
    border: 2px solid var(--accent-primary);
    box-shadow: 0 0 4px var(--accent-primary);
}

.heatmap-day.future[b-ovyb9hbl9n] {
    opacity: 0.3;
    pointer-events: none;
}

@media (hover: hover) {
    .heatmap-day:hover:not(.future)[b-ovyb9hbl9n] {
        transform: scale(1.3);
        z-index: 10;
    }
}

.heatmap-legend[b-ovyb9hbl9n] {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: flex-end;
    margin-top: 15px;
    font-size: 11px;
    color: var(--text-secondary);
}

.heatmap-legend .heatmap-day[b-ovyb9hbl9n] {
    margin: 0 2px;
}

/* Dual Section Layout */
.analytics-dual-section[b-ovyb9hbl9n] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

@media (max-width: 968px) {
    .analytics-dual-section[b-ovyb9hbl9n] {
        grid-template-columns: 1fr;
    }
}

.muscle-groups-section[b-ovyb9hbl9n],
.top-exercises-section[b-ovyb9hbl9n] {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
}

.muscle-groups-section h3[b-ovyb9hbl9n],
.top-exercises-section h3[b-ovyb9hbl9n] {
    margin: 0 0 15px 0;
    font-size: 1.3rem;
    font-weight: 600;
}

/* Equipment Section (standalone) */
.equipment-section[b-ovyb9hbl9n] {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
}

.equipment-section h3[b-ovyb9hbl9n] {
    margin: 0 0 20px 0;
    font-size: 1.3rem;
    font-weight: 600;
}

/* Muscle Tabs */
.muscle-tabs[b-ovyb9hbl9n] {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.muscle-tab[b-ovyb9hbl9n] {
    padding: 10px 20px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: -2px;
}

@media (hover: hover) {
    .muscle-tab:hover[b-ovyb9hbl9n] {
        color: var(--text-primary);
        background-color: var(--hover-bg);
    }
}

.muscle-tab.active[b-ovyb9hbl9n] {
    color: var(--accent-primary);
    border-bottom-color: var(--accent-primary);
}

/* Muscle Volume List */
.muscle-volume-list[b-ovyb9hbl9n] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.muscle-volume-item[b-ovyb9hbl9n] {
    display: grid;
    grid-template-columns: 120px 1fr 100px;
    align-items: center;
    gap: 12px;
}

.muscle-volume-name[b-ovyb9hbl9n] {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.muscle-volume-bar-container[b-ovyb9hbl9n] {
    background-color: var(--hover-bg);
    height: 24px;
    border-radius: 12px;
    overflow: hidden;
}

.muscle-volume-bar[b-ovyb9hbl9n] {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-secondary), var(--accent-primary));
    transition: width 0.5s ease;
}

.muscle-volume-value[b-ovyb9hbl9n] {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: right;
}

/* Equipment Grid */
.equipment-grid[b-ovyb9hbl9n] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
}

.equipment-card[b-ovyb9hbl9n] {
    background-color: var(--hover-bg);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    transition: all 0.2s ease;
}

@media (hover: hover) {
    .equipment-card:hover[b-ovyb9hbl9n] {
        transform: translateY(-2px);
        background-color: var(--border-color);
    }
}

.equipment-name[b-ovyb9hbl9n] {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.equipment-count[b-ovyb9hbl9n] {
    font-size: 13px;
    color: var(--text-secondary);
}

/* Personal Records */
.pr-section[b-ovyb9hbl9n] {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
}

.pr-section h3[b-ovyb9hbl9n] {
    margin: 0 0 20px 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.pr-list[b-ovyb9hbl9n] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 12px;
}

.pr-item[b-ovyb9hbl9n] {
    background-color: var(--hover-bg);
    border-radius: 8px;
    padding: 15px;
    transition: all 0.2s ease;
}

@media (hover: hover) {
    .pr-item:hover[b-ovyb9hbl9n] {
        background-color: var(--border-color);
        transform: translateY(-2px);
    }
}

.pr-exercise[b-ovyb9hbl9n] {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.pr-value[b-ovyb9hbl9n] {
    font-size: 14px;
    color: var(--accent-primary);
    font-weight: 600;
    margin-bottom: 4px;
}

.pr-date[b-ovyb9hbl9n] {
    font-size: 12px;
    color: var(--text-muted);
}

/* Workout Activity Panel */
.workout-activity-panel[b-ovyb9hbl9n] {
    margin-top: 20px;
    background-color: var(--hover-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

.workout-activity-header[b-ovyb9hbl9n] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.workout-activity-header h5[b-ovyb9hbl9n] {
    margin: 0 0 4px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.clear-btn[b-ovyb9hbl9n] {
    background: none;
    border: none;
    font-size: 1rem;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 5px;
    transition: color 0.2s ease;
}

@media (hover: hover) {
    .clear-btn:hover[b-ovyb9hbl9n] {
        color: var(--text-primary);
    }
}

.workout-activity-body[b-ovyb9hbl9n] {
    padding: 20px;
}

.workout-date[b-ovyb9hbl9n] {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.workout-count[b-ovyb9hbl9n] {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.workout-list[b-ovyb9hbl9n] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.analytics-workout-item[b-ovyb9hbl9n] {
    display: flex;
    align-items: center;
    padding: 12px;
    background-color: var(--hover-bg);
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.analytics-workout-item .bi-check-circle-fill[b-ovyb9hbl9n] {
    color: var(--accent-primary);
}

/* Responsive Design */
@media (max-width: 767px) {
    .analytics-container[b-ovyb9hbl9n] {
        padding: 15px;
    }

    .analytics-header h1[b-ovyb9hbl9n] {
        font-size: 1.5rem;
    }

    .btn-back[b-ovyb9hbl9n] {
        min-width: 38px;
        min-height: 38px;
    }

    .stats-grid[b-ovyb9hbl9n] {
        grid-template-columns: 1fr;
    }

    .simple-chart[b-ovyb9hbl9n],
    .day-of-week-chart[b-ovyb9hbl9n] {
        height: 180px;
    }

    .pr-list[b-ovyb9hbl9n] {
        grid-template-columns: 1fr;
    }

    /* Heatmap mobile scroll */
    .activity-heatmap[b-ovyb9hbl9n] {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
    }

    .heatmap-with-years[b-ovyb9hbl9n] {
        flex-direction: column-reverse;
        gap: 10px;
    }

    .year-selector[b-ovyb9hbl9n] {
        flex-direction: row;
        flex-wrap: wrap;
        padding-top: 0;
        padding-bottom: 10px;
        gap: 4px;
    }

    .year-btn[b-ovyb9hbl9n] {
        min-height: 44px;
        min-width: 44px;
        padding: 8px 12px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Muscle volume grid for mobile */
    .muscle-volume-item[b-ovyb9hbl9n] {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .muscle-volume-name[b-ovyb9hbl9n] {
        font-size: 13px;
    }

    .muscle-volume-value[b-ovyb9hbl9n] {
        text-align: left;
        font-size: 12px;
    }

    /* Muscle tabs touch targets */
    .muscle-tabs[b-ovyb9hbl9n] {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        flex-wrap: nowrap;
    }

    .muscle-tab[b-ovyb9hbl9n] {
        min-height: 48px;
        padding: 12px 16px;
        white-space: nowrap;
        flex-shrink: 0;
    }
}
/* /Components/Pages/Contact.razor.rz.scp.css */
.contact-container[b-rlxz6cuayl] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.contact-header[b-rlxz6cuayl] {
    text-align: center;
    margin-bottom: 3rem;
}

.page-title[b-rlxz6cuayl] {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.page-subtitle[b-rlxz6cuayl] {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.contact-intro[b-rlxz6cuayl] {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.contact-intro p[b-rlxz6cuayl] {
    font-size: 1.063rem;
    line-height: 1.7;
    color: var(--text-primary);
}

.contact-layout[b-rlxz6cuayl] {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
}

.contact-info-section[b-rlxz6cuayl] {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-section h2[b-rlxz6cuayl] {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.info-card[b-rlxz6cuayl] {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--bg-tertiary);
    border-radius: 12px;
    transition: transform 0.2s;
}

@media (hover: hover) {
    .info-card:hover[b-rlxz6cuayl] {
        transform: translateX(4px);
    }
}

.info-icon[b-rlxz6cuayl] {
    font-size: 2rem;
    color: var(--accent-primary);
    flex-shrink: 0;
}

.info-content[b-rlxz6cuayl] {
    flex: 1;
}

.info-content h3[b-rlxz6cuayl] {
    font-size: 1.063rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
}

.info-content p[b-rlxz6cuayl] {
    font-size: 0.938rem;
    color: var(--text-primary);
    margin: 0 0 0.25rem 0;
}

.info-content small[b-rlxz6cuayl] {
    font-size: 0.813rem;
    color: var(--text-secondary);
}

.info-content a[b-rlxz6cuayl] {
    color: var(--accent-primary);
    text-decoration: none;
    transition: color 0.2s;
}

@media (hover: hover) {
    .info-content a:hover[b-rlxz6cuayl] {
        color: var(--accent-secondary);
        text-decoration: underline;
    }
}

@media (max-width: 992px) {
    .contact-layout[b-rlxz6cuayl] {
        grid-template-columns: 1fr;
    }

    .contact-info-section[b-rlxz6cuayl] {
        order: -1;
    }
}

@media (max-width: 768px) {
    .contact-container[b-rlxz6cuayl] {
        padding: 1rem;
    }

    .page-title[b-rlxz6cuayl] {
        font-size: 2rem;
    }

    .contact-info-section[b-rlxz6cuayl] {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-container[b-rlxz6cuayl] {
        padding: 0.75rem;
    }

    .page-title[b-rlxz6cuayl] {
        font-size: 1.5rem;
    }

    .page-subtitle[b-rlxz6cuayl] {
        font-size: 0.875rem;
    }

    .contact-info-section[b-rlxz6cuayl] {
        padding: 1rem;
        border-radius: 12px;
    }

    .info-icon[b-rlxz6cuayl] {
        font-size: 1.25rem;
    }

    .info-content h3[b-rlxz6cuayl] {
        font-size: 1rem;
    }

    .info-content p[b-rlxz6cuayl] {
        font-size: 0.875rem;
    }
}
/* /Components/Pages/CreateQuickNote.razor.rz.scp.css */
/* Modern Scoped CSS for CreateQuickNote.razor */

/* Base Layout */
.quicknote-container[b-zu5bsj6yij] {
    max-width: 900px;
    margin: 0 auto;
    padding: 1rem 1rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: calc(100vh - 60px);
    animation: fadeIn-b-zu5bsj6yij 0.4s ease-out;
}

@keyframes fadeIn-b-zu5bsj6yij {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Error Message */
.error-message[b-zu5bsj6yij] {
    padding: 0.75rem 1rem;
    border-radius: 12px;
    background: var(--danger-bg);
    color: var(--danger);
    border: 1px solid var(--danger-border);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    font-size: 0.95rem;
    animation: slideDown-b-zu5bsj6yij 0.3s ease-out;
}

@keyframes slideDown-b-zu5bsj6yij {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Editor Area */
.editor-card[b-zu5bsj6yij] {
    background: var(--bg-primary, #ffffff);
    border-radius: 16px;
    padding: 1rem 1.5rem 1.5rem;
    box-shadow: 0 4px 20px -5px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color, #e5e7eb);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
    position: relative;
}

body.dark-theme .editor-card[b-zu5bsj6yij] {
    background: var(--bg-secondary, #1f2937);
    border-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 20px -5px rgba(0, 0, 0, 0.2);
}

/* Inline Header Row */
.editor-header[b-zu5bsj6yij] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color, #e5e7eb);
}

body.dark-theme .editor-header[b-zu5bsj6yij] {
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.header-actions[b-zu5bsj6yij] {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

/* Action Buttons */
.action-btn[b-zu5bsj6yij] {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.85rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--bg-secondary, #f3f4f6);
    color: var(--text-primary, #1f2937);
}

@media (hover: hover) {
    .action-btn:hover:not(:disabled)[b-zu5bsj6yij] {
        transform: translateY(-1px);
    }
}

.action-btn:active:not(:disabled)[b-zu5bsj6yij] {
    transform: translateY(0);
}

.action-btn:disabled[b-zu5bsj6yij] {
    opacity: 0.5;
    cursor: not-allowed;
    filter: grayscale(1);
}

.action-btn.back-btn[b-zu5bsj6yij] {
    width: 36px;
    height: 36px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--border-color);
    flex-shrink: 0;
}

@media (hover: hover) {
    .action-btn.back-btn:hover[b-zu5bsj6yij] {
        background: var(--bg-secondary);
        border-color: var(--text-primary);
    }
}

.action-btn.ai-btn[b-zu5bsj6yij] {
    background: linear-gradient(135deg, var(--accent-secondary) 0%, var(--accent-primary) 100%);
    color: white;
}

@media (hover: hover) {
    .action-btn.ai-btn:hover:not(:disabled)[b-zu5bsj6yij] {
        filter: brightness(1.1);
    }
}

.action-btn.save-btn[b-zu5bsj6yij] {
    background: linear-gradient(135deg, var(--success) 0%, color-mix(in srgb, var(--success) 80%, black) 100%);
    color: white;
}

@media (hover: hover) {
    .action-btn.save-btn:hover:not(:disabled)[b-zu5bsj6yij] {
        filter: brightness(1.1);
    }
}

/* Title Input - Inline */
.title-input[b-zu5bsj6yij] {
    flex: 1;
    min-width: 0;
    border: none;
    background: transparent;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    padding: 0.25rem 0.5rem;
}

.title-input:focus[b-zu5bsj6yij] {
    outline: none;
}

.title-input[b-zu5bsj6yij]::placeholder {
    color: var(--text-muted, #9ca3af);
    opacity: 0.7;
}

/* Content Textarea */
.content-textarea[b-zu5bsj6yij] {
    width: 100%;
    flex: 1;
    min-height: 350px;
    border: none;
    background: transparent;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-primary);
    resize: none;
    padding: 0;
    font-family: inherit;
}

.content-textarea:focus[b-zu5bsj6yij] {
    outline: none;
}

.content-textarea[b-zu5bsj6yij]::placeholder {
    color: var(--text-muted, #9ca3af);
    opacity: 0.6;
}

/* Character Counter */
.char-counter[b-zu5bsj6yij] {
    position: absolute;
    bottom: 1rem;
    right: 1.5rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    background: var(--bg-secondary);
    padding: 0.2rem 0.6rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

.char-counter.near-limit[b-zu5bsj6yij] {
    color: var(--warning);
    border-color: var(--warning);
}

.char-counter.limit-reached[b-zu5bsj6yij] {
    color: var(--danger);
    border-color: var(--danger);
    background: var(--danger-bg);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .quicknote-container[b-zu5bsj6yij] {
        padding: 0.75rem;
        max-width: 100%;
        min-height: 100vh;
        gap: 0.75rem;
    }

    .editor-card[b-zu5bsj6yij] {
        border-radius: 12px;
        padding: 0.75rem 1rem 3rem;
    }

    .editor-header[b-zu5bsj6yij] {
        flex-wrap: wrap;
        gap: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .title-input[b-zu5bsj6yij] {
        order: 2;
        flex-basis: 100%;
        font-size: 1rem;
        padding: 0.25rem 0;
    }

    .action-btn.back-btn[b-zu5bsj6yij] {
        order: 1;
    }

    .header-actions[b-zu5bsj6yij] {
        order: 1;
        margin-left: auto;
    }

    .content-textarea[b-zu5bsj6yij] {
        min-height: 300px;
    }

    .char-counter[b-zu5bsj6yij] {
        bottom: 0.75rem;
        right: 1rem;
    }

    .action-btn[b-zu5bsj6yij] {
        padding: 0.4rem 0.75rem;
        font-size: 0.8rem;
    }

    .action-btn.back-btn[b-zu5bsj6yij] {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 576px) {
    .quicknote-container[b-zu5bsj6yij] {
        padding: 0.5rem;
        padding-bottom: 0;
    }

    .editor-card[b-zu5bsj6yij] {
        padding: 0.5rem 0.75rem 3rem;
    }

    .action-btn span:not(.bi)[b-zu5bsj6yij] {
        display: none;
    }

    .action-btn.ai-btn[b-zu5bsj6yij] {
        padding: 0.5rem;
        width: 36px;
        height: 36px;
        justify-content: center;
    }
}

/* Footer Action Bar */
.actions-footer[b-zu5bsj6yij] {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 1rem);
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-radius: 0 0 16px 16px;
}

.btn-complete-footer[b-zu5bsj6yij] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    min-height: 48px;
    background: linear-gradient(135deg, var(--success) 0%, #1a7f37 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

@media (hover: hover) {
    .btn-complete-footer:hover:not(:disabled)[b-zu5bsj6yij] {
        filter: brightness(1.1);
        transform: translateY(-1px);
    }
}

.btn-complete-footer:disabled[b-zu5bsj6yij] {
    opacity: 0.5;
    cursor: not-allowed;
    filter: grayscale(1);
}

.btn-abandon-footer[b-zu5bsj6yij] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    min-height: 48px;
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

@media (hover: hover) {
    .btn-abandon-footer:hover:not(:disabled)[b-zu5bsj6yij] {
        color: var(--danger);
        border-color: var(--danger);
        background: rgba(220, 53, 69, 0.1);
    }
}

.btn-abandon-footer:disabled[b-zu5bsj6yij] {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Mobile: Stack buttons vertically */
@media (max-width: 576px) {
    .actions-footer[b-zu5bsj6yij] {
        flex-direction: column;
        gap: 0.75rem;
        border-radius: 0;
    }

    .btn-abandon-footer[b-zu5bsj6yij] {
        width: 100%;
    }
}
/* /Components/Pages/ExerciseDetail.razor.rz.scp.css */
/* Exercise Detail Page */
.exercise-detail-page[b-27e0bco5xu] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.75rem 2rem 4rem;
    display: flex;
    flex-direction: column;
    gap: 2.75rem;
}

.exercise-detail-loading[b-27e0bco5xu],
.exercise-detail-error[b-27e0bco5xu] {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    box-shadow: 0 28px 45px rgba(15, 23, 42, 0.08);
}

.exercise-detail-loading .spinner-border[b-27e0bco5xu] {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1.5rem;
}

.exercise-detail-error .bi[b-27e0bco5xu] {
    font-size: 3rem;
    color: #f59f00;
    display: block;
    margin-bottom: 1rem;
}

.btn-back[b-27e0bco5xu],
.btn-back-link[b-27e0bco5xu] {
    border: none;
    background: transparent;
    color: var(--accent-primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    transition: background 0.2s ease, transform 0.2s ease;
}

@media (hover: hover) {
    .btn-back:hover[b-27e0bco5xu],
    .btn-back-link:hover[b-27e0bco5xu] {
        background: rgba(124, 105, 255, 0.14);
        transform: translateX(-2px);
    }
}

/* Hero */
.exercise-detail-hero[b-27e0bco5xu] {
    position: relative;
    border-radius: 26px;
    padding: clamp(2.2rem, 2vw + 1.75rem, 3rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(1.9rem, 2vw, 2.8rem);
    border: 1px solid transparent;
    background:
        linear-gradient(var(--card-bg), var(--card-bg)) padding-box,
        linear-gradient(135deg, rgba(124, 105, 255, 0.7), rgba(13, 110, 253, 0.58)) border-box;
    box-shadow: 0 22px 50px rgba(58, 52, 150, 0.22);
    overflow: hidden;
}

:global(body.dark-theme) .exercise-detail-hero[b-27e0bco5xu] {
    background:
        linear-gradient(var(--card-bg), var(--card-bg)) padding-box,
        linear-gradient(135deg, rgba(82, 67, 210, 0.78), rgba(31, 199, 212, 0.58)) border-box;
}

.exercise-detail-hero[b-27e0bco5xu]::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        radial-gradient(120% 120% at 0% 0%, rgba(124, 105, 255, 0.18), transparent 55%),
        radial-gradient(120% 120% at 100% 100%, rgba(13, 110, 253, 0.16), transparent 55%);
    opacity: 0.45;
    pointer-events: none;
}

.hero-overview[b-27e0bco5xu] {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-header[b-27e0bco5xu] {
    display: flex;
    justify-content: center;
    width: 100%;
}

.hero-title-block[b-27e0bco5xu] {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    text-align: center;
    max-width: 40rem;
}

.hero-title-block h1[b-27e0bco5xu] {
    font-size: clamp(2.4rem, 2.4vw + 2rem, 3.2rem);
    font-weight: 800;
    margin: 0;
    line-height: 1.08;
    color: var(--text-primary);
}

.hero-title-block p[b-27e0bco5xu] {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.7;
}


.hero-tags[b-27e0bco5xu] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
}

.hero-tag[b-27e0bco5xu] {
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(12px);
    color: var(--text-primary);
    border-radius: 999px;
    padding: 0.5rem 0.95rem;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

:global(body.dark-theme) .hero-tag[b-27e0bco5xu] {
    background: rgba(17, 24, 39, 0.75);
    border-color: rgba(124, 105, 255, 0.45);
}

.hero-tag .bi[b-27e0bco5xu] {
    font-size: 1rem;
}

.hero-actions[b-27e0bco5xu] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
}

.btn-add-to-workout-detail[b-27e0bco5xu] {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    border-radius: 16px;
    border: none;
    padding: 0.85rem 1.7rem;
    font-weight: 700;
    background: var(--accent-gradient);
    color: var(--accent-contrast);
    box-shadow: 0 4px 16px rgba(124, 105, 255, 0.3);
    cursor: pointer;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

@media (hover: hover) {
    .btn-add-to-workout-detail:hover[b-27e0bco5xu] {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(124, 105, 255, 0.4);
    }
}

.hero-media[b-27e0bco5xu] {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hero-media[b-27e0bco5xu]::before {
    content: "";
    position: absolute;
    inset: 12% 12% -18% 12%;
    background: radial-gradient(55% 55% at 50% 30%, rgba(255, 255, 255, 0.08), transparent),
        radial-gradient(50% 50% at 50% 70%, rgba(31, 199, 212, 0.08), transparent 60%);
    filter: blur(8px);
    opacity: 0.2;
}

.hero-media img[b-27e0bco5xu] {
    width: min(100%, 660px);
    border-radius: 26px;
    object-fit: cover;
    box-shadow: 0 22px 44px rgba(13, 110, 253, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

/* Content Layout */
.exercise-detail-content[b-27e0bco5xu] {
    display: flex;
    flex-direction: column;
    gap: 2.85rem;
}

.detail-section[b-27e0bco5xu] {
    background: var(--card-bg);
    border-radius: 22px;
    padding: clamp(1.75rem, 1.5vw + 1.5rem, 2.4rem);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 1.9rem;
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.08);
    position: relative;
    overflow: hidden;
}

/* Section Header */
.section-header[b-27e0bco5xu] {
    display: flex;
    align-items: center;
    gap: 1.3rem;
}

.section-title-block[b-27e0bco5xu] {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.section-header h2[b-27e0bco5xu] {
    font-size: clamp(1.65rem, 0.7vw + 1.3rem, 1.95rem);
    font-weight: 700;
    margin: 0;
}

.section-header p[b-27e0bco5xu] {
    margin: 0;
    color: var(--text-secondary);
    max-width: 48ch;
}

.section-icon-wrapper[b-27e0bco5xu] {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    color: var(--accent-primary);
    background: rgba(124, 105, 255, 0.18);
    box-shadow: inset 0 0 0 1px rgba(124, 105, 255, 0.35);
}

:global(body.dark-theme) .section-icon-wrapper[b-27e0bco5xu] {
    background: rgba(124, 105, 255, 0.28);
    box-shadow: inset 0 0 0 1px rgba(124, 105, 255, 0.42);
}

/* Instructions */
.instructions-section[b-27e0bco5xu] {
    position: relative;
    border: 1px solid transparent;
    background:
        linear-gradient(var(--card-bg), var(--card-bg)) padding-box,
        linear-gradient(135deg, rgba(13, 110, 253, 0.65), rgba(124, 105, 255, 0.52)) border-box;
    box-shadow: 0 22px 48px rgba(13, 110, 253, 0.22);
}

:global(body.dark-theme) .instructions-section[b-27e0bco5xu] {
    background:
        linear-gradient(var(--card-bg), var(--card-bg)) padding-box,
        linear-gradient(135deg, rgba(90, 167, 255, 0.6), rgba(124, 105, 255, 0.55)) border-box;
}

.instructions-section[b-27e0bco5xu]::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(140% 140% at 0% 0%, rgba(13, 110, 253, 0.22), transparent 60%),
        radial-gradient(140% 140% at 100% 100%, rgba(124, 105, 255, 0.18), transparent 60%);
    pointer-events: none;
    opacity: 0.6;
}

.section-icon-wrapper.instructions-icon[b-27e0bco5xu] {
    background: rgba(13, 110, 253, 0.18);
    color: var(--accent-primary);
    box-shadow: inset 0 0 0 1px rgba(13, 110, 253, 0.32);
}

:global(body.dark-theme) .section-icon-wrapper.instructions-icon[b-27e0bco5xu] {
    background: rgba(90, 167, 255, 0.24);
    box-shadow: inset 0 0 0 1px rgba(90, 167, 255, 0.4);
}

.instruction-single[b-27e0bco5xu] {
    position: relative;
    padding: 1.2rem 1.4rem;
    border-radius: 18px;
    border: 1px solid rgba(13, 110, 253, 0.28);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    line-height: 1.65;
    backdrop-filter: blur(6px);
}

/* Instruction Steps */
.instruction-steps[b-27e0bco5xu] {
    counter-reset: instruction;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.05rem;
    margin: 0;
    padding: 0;
}

.instruction-steps li[b-27e0bco5xu] {
    counter-increment: instruction;
    position: relative;
    padding: 1.05rem 1.35rem 1.05rem 3.6rem;
    border-radius: 18px;
    border: 1px solid rgba(13, 110, 253, 0.26);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 12px 26px rgba(13, 110, 253, 0.16);
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.97rem;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

:global(body.dark-theme) .instruction-steps li[b-27e0bco5xu] {
    background: rgba(18, 24, 40, 0.78);
}

.instruction-steps li[b-27e0bco5xu]::before {
    content: counter(instruction);
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.24), rgba(124, 105, 255, 0.26));
    color: var(--accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.88rem;
    box-shadow: inset 0 0 0 1px rgba(13, 110, 253, 0.34);
}

.instruction-steps li[b-27e0bco5xu]::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: linear-gradient(120deg, rgba(13, 110, 253, 0.18), transparent 70%);
    opacity: 0;
    transition: opacity 0.2s ease;
}

@media (hover: hover) {
    .instruction-steps li:hover[b-27e0bco5xu] {
        transform: translateY(-1px);
        box-shadow: 0 16px 32px rgba(13, 110, 253, 0.2);
        border-color: rgba(13, 110, 253, 0.4);
    }
}

@media (hover: hover) {
    .instruction-steps li:hover[b-27e0bco5xu]::after {
        opacity: 1;
    }
}

.instruction-step-text[b-27e0bco5xu] {
    position: relative;
    z-index: 1;
    color: var(--text-primary);
    display: block;
}

.instruction-step-text strong[b-27e0bco5xu] {
    color: var(--accent-primary);
}

/* Common Mistakes */
.mistakes-section[b-27e0bco5xu] {
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    background:
        linear-gradient(var(--card-bg), var(--card-bg)) padding-box,
        linear-gradient(135deg, rgba(255, 116, 116, 0.7), rgba(124, 105, 255, 0.55)) border-box;
    box-shadow: 0 22px 44px rgba(255, 116, 116, 0.2);
}

:global(body.dark-theme) .mistakes-section[b-27e0bco5xu] {
    background:
        linear-gradient(var(--card-bg), var(--card-bg)) padding-box,
        linear-gradient(135deg, rgba(255, 139, 139, 0.62), rgba(124, 105, 255, 0.5)) border-box;
    box-shadow: 0 22px 46px rgba(255, 139, 139, 0.22);
}

.mistakes-section[b-27e0bco5xu]::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(130% 130% at 0% 0%, rgba(255, 116, 116, 0.24), transparent 60%),
        radial-gradient(130% 130% at 100% 100%, rgba(124, 105, 255, 0.2), transparent 60%);
    pointer-events: none;
    opacity: 0.65;
}

.mistakes-section .section-icon-wrapper[b-27e0bco5xu] {
    background: rgba(255, 116, 116, 0.22);
    color: #ff6b6b;
    box-shadow: inset 0 0 0 1px rgba(255, 116, 116, 0.38);
}

:global(body.dark-theme) .mistakes-section .section-icon-wrapper[b-27e0bco5xu] {
    background: rgba(255, 139, 139, 0.28);
    box-shadow: inset 0 0 0 1px rgba(255, 139, 139, 0.4);
}

.mistake-steps[b-27e0bco5xu] {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mistake-steps li[b-27e0bco5xu] {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 0.85rem;
    padding: 1.05rem 1.2rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 116, 116, 0.32);
    position: relative;
    backdrop-filter: blur(6px);
    color: var(--text-secondary);
    line-height: 1.58;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

:global(body.dark-theme) .mistake-steps li[b-27e0bco5xu] {
    background: rgba(18, 24, 40, 0.78);
}

.mistake-steps li[b-27e0bco5xu]::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: linear-gradient(120deg, rgba(255, 116, 116, 0.28), transparent 70%);
    opacity: 0;
    transition: opacity 0.22s ease;
}

@media (hover: hover) {
    .mistake-steps li:hover[b-27e0bco5xu] {
        transform: translateY(-2px);
        box-shadow: 0 18px 32px rgba(255, 116, 116, 0.26);
        border-color: rgba(255, 116, 116, 0.48);
    }
}

@media (hover: hover) {
    .mistake-steps li:hover[b-27e0bco5xu]::before {
        opacity: 1;
    }
}

.mistake-icon[b-27e0bco5xu] {
    font-size: 1.35rem;
    color: #ff6b6b;
    position: relative;
    z-index: 1;
    line-height: 1;
    margin-top: 0.2rem;
}

.mistake-text[b-27e0bco5xu] {
    position: relative;
    z-index: 1;
    color: var(--text-primary);
}

.mistake-text strong[b-27e0bco5xu] {
    color: #ff6b6b;
}

/* Insights */
.insights-section[b-27e0bco5xu] {
    position: relative;
    border: 1px solid transparent;
    background:
        linear-gradient(var(--card-bg), var(--card-bg)) padding-box,
        linear-gradient(135deg, rgba(103, 232, 249, 0.5), rgba(124, 105, 255, 0.5)) border-box;
    box-shadow: 0 22px 48px rgba(14, 165, 233, 0.18);
}

:global(body.dark-theme) .insights-section[b-27e0bco5xu] {
    background:
        linear-gradient(var(--card-bg), var(--card-bg)) padding-box,
        linear-gradient(135deg, rgba(56, 189, 248, 0.55), rgba(124, 105, 255, 0.5)) border-box;
}

.insights-section[b-27e0bco5xu]::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(140% 140% at 0% 0%, rgba(103, 232, 249, 0.18), transparent 60%),
        radial-gradient(140% 140% at 100% 100%, rgba(124, 105, 255, 0.18), transparent 60%);
    pointer-events: none;
    opacity: 0.55;
}

.section-icon-wrapper.insights-icon[b-27e0bco5xu] {
    background: rgba(56, 189, 248, 0.22);
    color: rgba(14, 165, 233, 0.95);
    box-shadow: inset 0 0 0 1px rgba(56, 189, 248, 0.35);
}

.insights-grid[b-27e0bco5xu] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.insights-card[b-27e0bco5xu] {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    border: 1px solid rgba(103, 232, 249, 0.28);
    padding: 1.6rem;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    backdrop-filter: blur(10px);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

:global(body.dark-theme) .insights-card[b-27e0bco5xu] {
    background: rgba(17, 24, 39, 0.8);
}

@media (hover: hover) {
    .insights-card:hover[b-27e0bco5xu] {
        transform: translateY(-4px);
        box-shadow: 0 22px 48px rgba(14, 165, 233, 0.25);
        border-color: rgba(103, 232, 249, 0.45);
    }
}

.insight-card-icon[b-27e0bco5xu] {
    width: 3.1rem;
    height: 3.1rem;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 1.35rem;
    color: rgba(14, 165, 233, 0.95);
    background: rgba(56, 189, 248, 0.18);
    box-shadow: inset 0 0 0 1px rgba(56, 189, 248, 0.35);
}

.insight-card-body[b-27e0bco5xu] {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    color: var(--text-secondary);
}

.insight-card-body h3[b-27e0bco5xu] {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-primary);
}

.primary-muscle[b-27e0bco5xu] {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-primary);
}

.secondary-muscles[b-27e0bco5xu] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.secondary-muscles span[b-27e0bco5xu] {
    background: rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    padding: 0.45rem 0.75rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

:global(body.dark-theme) .secondary-muscles span[b-27e0bco5xu] {
    background: rgba(255, 255, 255, 0.06);
}

.no-secondary[b-27e0bco5xu] {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

.equipment-type[b-27e0bco5xu] {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-primary);
}

.equipment-note[b-27e0bco5xu] {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

.btn-watch-video[b-27e0bco5xu] {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.75rem 1.35rem;
    border-radius: 14px;
    border: 1px solid transparent;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.9), rgba(124, 105, 255, 0.92));
    color: #06111b;
    text-decoration: none;
    font-weight: 600;
    width: fit-content;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

@media (hover: hover) {
    .btn-watch-video:hover[b-27e0bco5xu] {
        transform: translateY(-2px);
        box-shadow: 0 16px 32px rgba(56, 189, 248, 0.35);
        color: #06111b;
    }
}

/* Activation */
.activation-section[b-27e0bco5xu] {
    position: relative;
    border: 1px solid transparent;
    background:
        linear-gradient(var(--card-bg), var(--card-bg)) padding-box,
        linear-gradient(135deg, rgba(45, 212, 191, 0.6), rgba(124, 105, 255, 0.45)) border-box;
    box-shadow: 0 22px 48px rgba(45, 212, 191, 0.2);
}

:global(body.dark-theme) .activation-section[b-27e0bco5xu] {
    background:
        linear-gradient(var(--card-bg), var(--card-bg)) padding-box,
        linear-gradient(135deg, rgba(45, 212, 191, 0.5), rgba(124, 105, 255, 0.5)) border-box;
}

.activation-section[b-27e0bco5xu]::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(130% 130% at 0% 0%, rgba(45, 212, 191, 0.18), transparent 60%),
        radial-gradient(130% 130% at 100% 100%, rgba(124, 105, 255, 0.18), transparent 60%);
    pointer-events: none;
    opacity: 0.52;
}

.section-icon-wrapper.activation-icon[b-27e0bco5xu] {
    background: rgba(45, 212, 191, 0.22);
    color: rgba(13, 148, 136, 0.95);
    box-shadow: inset 0 0 0 1px rgba(45, 212, 191, 0.35);
}

.activation-list[b-27e0bco5xu] {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    position: relative;
    z-index: 1;
}

.activation-row[b-27e0bco5xu] {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding: 1.15rem 1.35rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(45, 212, 191, 0.26);
    backdrop-filter: blur(8px);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

:global(body.dark-theme) .activation-row[b-27e0bco5xu] {
    background: rgba(17, 24, 39, 0.78);
}

@media (hover: hover) {
    .activation-row:hover[b-27e0bco5xu] {
        transform: translateY(-2px);
        border-color: rgba(45, 212, 191, 0.45);
        box-shadow: 0 18px 36px rgba(45, 212, 191, 0.2);
    }
}

.activation-label[b-27e0bco5xu] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.activation-label .muscle-name[b-27e0bco5xu] {
    color: var(--text-primary);
    font-size: 1.05rem;
}

.activation-label .activation-percent[b-27e0bco5xu] {
    color: rgba(13, 148, 136, 0.9);
    font-size: 0.95rem;
}

.activation-bar[b-27e0bco5xu] {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    height: 12px;
    overflow: hidden;
}

.activation-fill[b-27e0bco5xu] {
    background: linear-gradient(90deg, rgba(45, 212, 191, 0.95), rgba(124, 105, 255, 0.85));
    height: 100%;
    border-radius: 14px;
    transition: width 0.4s ease;
}

/* Responsive */
@media (max-width: 1100px) {
    .exercise-detail-hero[b-27e0bco5xu] {
        grid-template-columns: minmax(0, 1fr);
        text-align: center;
    }

    .hero-overview[b-27e0bco5xu] {
        align-items: center;
    }

    .hero-title-block[b-27e0bco5xu] {
        text-align: center;
        align-items: center;
    }

    .hero-title-block p[b-27e0bco5xu] {
        max-width: 40ch;
    }

    .hero-tags[b-27e0bco5xu] {
        justify-content: center;
    }

    .hero-actions[b-27e0bco5xu] {
        justify-content: center;
    }

    .hero-media[b-27e0bco5xu] {
        justify-content: center;
    }

    .hero-media[b-27e0bco5xu]::before {
        inset: 8% -12% -16% -12%;
    }
}

@media (max-width: 992px) {
    .exercise-detail-page[b-27e0bco5xu] {
        padding: 2.2rem 1.4rem 3.4rem;
    }

    .detail-section[b-27e0bco5xu] {
        padding: 1.85rem;
    }

    .insights-grid[b-27e0bco5xu] {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .exercise-detail-page[b-27e0bco5xu] {
        padding: 2rem 1.25rem 3rem;
    }

    .exercise-detail-hero[b-27e0bco5xu] {
        padding: 2.1rem 1.75rem;
    }

    .detail-section[b-27e0bco5xu] {
        padding: 1.6rem;
    }

    .section-header[b-27e0bco5xu] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .instruction-steps li[b-27e0bco5xu] {
        padding: 1.05rem 1.2rem 1.05rem 3.4rem;
        border-radius: 18px;
    }

    .instruction-steps li[b-27e0bco5xu]::before {
        left: 1rem;
        width: 2.4rem;
        height: 2.4rem;
        font-size: 0.95rem;
    }

    .mistake-steps li[b-27e0bco5xu] {
        grid-template-columns: 1fr;
        padding: 0.95rem 1rem;
    }

    .insights-grid[b-27e0bco5xu] {
        grid-template-columns: 1fr;
    }

    .activation-row[b-27e0bco5xu] {
        padding: 1rem 1.1rem;
    }
}

@media (max-width: 576px) {
    .exercise-detail-page[b-27e0bco5xu] {
        padding: 1.8rem 1rem 2.6rem;
    }

    .exercise-detail-hero[b-27e0bco5xu] {
        padding: 1.85rem 1.35rem;
    }

    .section-icon-wrapper[b-27e0bco5xu] {
        width: 2.75rem;
        height: 2.75rem;
        font-size: 1.2rem;
        border-radius: 16px;
    }

    .section-icon-wrapper.instructions-icon[b-27e0bco5xu],
    .section-icon-wrapper.insights-icon[b-27e0bco5xu],
    .section-icon-wrapper.activation-icon[b-27e0bco5xu] {
        width: 2.6rem;
        height: 2.6rem;
        font-size: 1.15rem;
    }

    .instruction-steps[b-27e0bco5xu] {
        gap: 0.95rem;
    }

    .instruction-steps li[b-27e0bco5xu] {
        padding: 0.95rem 1.05rem 0.95rem 3.1rem;
    }

    .instruction-steps li[b-27e0bco5xu]::before {
        width: 2.2rem;
        height: 2.2rem;
    }

    .mistake-steps[b-27e0bco5xu] {
        gap: 0.85rem;
    }

    .mistake-steps li[b-27e0bco5xu] {
        padding: 0.85rem 0.95rem;
        border-radius: 16px;
    }
}

/* ==========================================
   MODAL STYLES
   ========================================== */

/* Modal Overlay */
.modal-overlay[b-27e0bco5xu] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1100;
    animation: modalFadeIn-b-27e0bco5xu 0.15s ease-out forwards;
    overscroll-behavior: contain;
}

@keyframes modalFadeIn-b-27e0bco5xu {
    from {
        background: rgba(0, 0, 0, 0);
    }
    to {
        background: rgba(0, 0, 0, 0.6);
    }
}

/* Modal Content */
.modal-content[b-27e0bco5xu] {
    background: var(--card-bg);
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    max-height: 85vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideUp-b-27e0bco5xu 0.3s ease-out;
}

@keyframes modalSlideUp-b-27e0bco5xu {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Modal Header */
.modal-header[b-27e0bco5xu] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.75rem;
    border-bottom: 1px solid var(--border-color);
    flex-shrink: 0;
}

.modal-header h3[b-27e0bco5xu] {
    margin: 0;
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 700;
}

.btn-close-modal[b-27e0bco5xu] {
    min-width: 48px;
    min-height: 48px;
    width: 48px;
    height: 48px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    border-radius: 50%;
    font-size: 1.5rem;
    line-height: 1;
    transition: background 0.2s, color 0.2s;
}

@media (hover: hover) {
    .btn-close-modal:hover[b-27e0bco5xu] {
        background: rgba(124, 105, 255, 0.12);
        color: var(--text-primary);
    }
}

/* Modal Body */
.modal-body[b-27e0bco5xu] {
    padding: 1.5rem 1.75rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* Workout Selection */
.workout-selection[b-27e0bco5xu] {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.workout-option[b-27e0bco5xu] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.15rem 1.35rem;
    border-radius: 16px;
    background: var(--input-bg, rgba(255, 255, 255, 0.05));
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

@media (hover: hover) {
    .workout-option:hover[b-27e0bco5xu] {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(124, 105, 255, 0.18);
        border-color: var(--accent-primary);
        background: rgba(124, 105, 255, 0.08);
    }
}

.workout-option > .bi[b-27e0bco5xu] {
    font-size: 1.5rem;
    color: var(--accent-primary);
    flex-shrink: 0;
}

.workout-option-info[b-27e0bco5xu] {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    flex: 1;
    min-width: 0;
}

.workout-option-info h4[b-27e0bco5xu] {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.workout-option-info p[b-27e0bco5xu] {
    margin: 0;
    font-size: 0.88rem;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.workout-exercise-count[b-27e0bco5xu] {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* Already Added State */
.workout-option.already-added[b-27e0bco5xu] {
    background: rgba(34, 197, 94, 0.08);
    border-color: rgba(34, 197, 94, 0.35);
    cursor: default;
}

@media (hover: hover) {
    .workout-option.already-added:hover[b-27e0bco5xu] {
        transform: none;
        box-shadow: none;
        background: rgba(34, 197, 94, 0.08);
        border-color: rgba(34, 197, 94, 0.35);
    }
}

.workout-option.already-added > .bi[b-27e0bco5xu] {
    color: #22c55e;
}

.already-added-badge[b-27e0bco5xu] {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: #22c55e;
    margin-top: 0.25rem;
}

.already-added-badge .bi[b-27e0bco5xu] {
    font-size: 0.9rem;
}

/* Empty State (No Workouts) */
.no-workouts[b-27e0bco5xu] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1.5rem;
    text-align: center;
    gap: 1rem;
}

.no-workouts > .bi[b-27e0bco5xu] {
    font-size: 3rem;
    color: var(--text-muted);
    opacity: 0.6;
}

.no-workouts p[b-27e0bco5xu] {
    margin: 0;
    color: var(--text-secondary);
    font-size: 1rem;
}

.btn-create-workout[b-27e0bco5xu] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
    border-radius: 12px;
    border: none;
    background: var(--accent-gradient);
    color: var(--accent-contrast);
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

@media (hover: hover) {
    .btn-create-workout:hover[b-27e0bco5xu] {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(124, 105, 255, 0.35);
    }
}

/* Modal Dark Mode */
:global(body.dark-theme) .modal-content[b-27e0bco5xu] {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

:global(body.dark-theme) .workout-option[b-27e0bco5xu] {
    background: rgba(17, 24, 39, 0.6);
}

@media (hover: hover) {
    :global(body.dark-theme) .workout-option:hover[b-27e0bco5xu] {
        background: rgba(124, 105, 255, 0.12);
    }
}

:global(body.dark-theme) .workout-option.already-added[b-27e0bco5xu] {
    background: rgba(34, 197, 94, 0.12);
}

@media (hover: hover) {
    :global(body.dark-theme) .workout-option.already-added:hover[b-27e0bco5xu] {
        background: rgba(34, 197, 94, 0.12);
    }
}

/* ==========================================
   VISUAL POLISH - LOADING & ERROR STATES
   ========================================== */

/* Enhanced Loading State */
.exercise-detail-loading .spinner-border[b-27e0bco5xu] {
    width: 3.5rem;
    height: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-primary);
}

.exercise-detail-loading p[b-27e0bco5xu] {
    animation: loadingPulse-b-27e0bco5xu 1.5s ease-in-out infinite;
}

@keyframes loadingPulse-b-27e0bco5xu {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

/* Enhanced Error State */
.exercise-detail-error .bi[b-27e0bco5xu] {
    animation: errorShake-b-27e0bco5xu 0.6s ease-in-out;
}

@keyframes errorShake-b-27e0bco5xu {
    0%, 100% {
        transform: translateX(0);
    }
    15%, 45%, 75% {
        transform: translateX(-4px);
    }
    30%, 60%, 90% {
        transform: translateX(4px);
    }
}

/* ==========================================
   VISUAL POLISH - SECTION ENTRY ANIMATIONS
   ========================================== */

.detail-section[b-27e0bco5xu] {
    animation: sectionFadeIn-b-27e0bco5xu 0.4s ease-out backwards;
}

.detail-section:nth-child(1)[b-27e0bco5xu] {
    animation-delay: 0.1s;
}

.detail-section:nth-child(2)[b-27e0bco5xu] {
    animation-delay: 0.2s;
}

.detail-section:nth-child(3)[b-27e0bco5xu] {
    animation-delay: 0.3s;
}

.detail-section:nth-child(4)[b-27e0bco5xu] {
    animation-delay: 0.4s;
}

@keyframes sectionFadeIn-b-27e0bco5xu {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   MOBILE / TOUCH TARGET IMPROVEMENTS
   ========================================== */

/* 48px minimum touch targets for back button */
.btn-back[b-27e0bco5xu],
.btn-back-link[b-27e0bco5xu] {
    min-height: 48px;
    min-width: 48px;
}

/* 48px minimum for add to workout button */
.btn-add-to-workout-detail[b-27e0bco5xu] {
    min-height: 48px;
}

/* ==========================================
   RESPONSIVE - MOBILE FULLSCREEN MODAL
   ========================================== */

@media (max-width: 576px) {
    /* Safe-area padding for notched devices */
    .exercise-detail-page[b-27e0bco5xu] {
        padding: calc(1.8rem + env(safe-area-inset-top, 0px))
                 calc(1rem + env(safe-area-inset-right, 0px))
                 calc(2.6rem + env(safe-area-inset-bottom, 0px))
                 calc(1rem + env(safe-area-inset-left, 0px));
    }

    /* Fullscreen modal on mobile */
    .modal-overlay[b-27e0bco5xu] {
        padding: 0;
        align-items: stretch;
        touch-action: none;
    }

    .modal-content[b-27e0bco5xu] {
        width: 100%;
        max-width: 100%;
        height: 100%;
        max-height: 100%;
        margin: 0;
        border-radius: 0;
        display: flex;
        flex-direction: column;
    }

    .modal-header[b-27e0bco5xu] {
        padding: calc(env(safe-area-inset-top, 0px) + 1rem) 1rem 1rem;
        flex-shrink: 0;
    }

    .modal-body[b-27e0bco5xu] {
        flex: 1;
        overflow-y: auto;
        padding: 1.25rem 1rem;
        -webkit-overflow-scrolling: touch;
    }

    .workout-option[b-27e0bco5xu] {
        padding: 1rem 1.1rem;
    }

    .no-workouts[b-27e0bco5xu] {
        padding: 2rem 1rem;
    }
}

/* ==========================================
   REDUCED MOTION PREFERENCES
   ========================================== */

@media (prefers-reduced-motion: reduce) {
    .activation-fill[b-27e0bco5xu],
    .btn-watch-video[b-27e0bco5xu],
    .btn-add-to-workout-detail[b-27e0bco5xu],
    .instruction-steps li[b-27e0bco5xu],
    .mistake-steps li[b-27e0bco5xu],
    .insights-card[b-27e0bco5xu],
    .hero-tag[b-27e0bco5xu],
    .btn-back[b-27e0bco5xu],
    .btn-back-link[b-27e0bco5xu],
    .detail-section[b-27e0bco5xu],
    .modal-overlay[b-27e0bco5xu],
    .modal-content[b-27e0bco5xu],
    .workout-option[b-27e0bco5xu],
    .btn-create-workout[b-27e0bco5xu],
    .btn-close-modal[b-27e0bco5xu],
    .exercise-detail-loading p[b-27e0bco5xu],
    .exercise-detail-error .bi[b-27e0bco5xu] {
        transition: none !important;
        animation: none !important;
    }
}
/* /Components/Pages/Exercises.razor.rz.scp.css */
/* Exercises Page */
.exercises-page[b-bz2xcy2vwz] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

/* Header */
.exercises-header[b-bz2xcy2vwz] {
    margin-bottom: 2rem;
}

.exercises-title h1[b-bz2xcy2vwz] {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 0.5rem 0;
    color: var(--text-primary);
}

.exercises-subtitle[b-bz2xcy2vwz] {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Search and Filters */
.exercises-controls[b-bz2xcy2vwz] {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
}

.search-filter-row[b-bz2xcy2vwz] {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.exercise-search-bar[b-bz2xcy2vwz] {
    position: relative;
    flex: 1;
    min-width: 300px;
    display: flex;
    align-items: center;
}

.exercise-search-bar .bi-search[b-bz2xcy2vwz] {
    position: absolute;
    left: 1rem;
    font-size: 1.1rem;
    color: var(--text-muted);
    pointer-events: none;
}

.exercise-search-bar input[b-bz2xcy2vwz] {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    background: var(--input-bg);
    color: var(--text-primary);
    transition: all 0.2s;
}

.exercise-search-bar input:focus[b-bz2xcy2vwz] {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 4px rgba(124, 105, 255, 0.18);
}

.btn-clear-search[b-bz2xcy2vwz] {
    position: absolute;
    right: 0.5rem;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.5rem;
    font-size: 1.25rem;
    border-radius: 6px;
    transition: all 0.2s;
}

@media (hover: hover) {
    .btn-clear-search:hover[b-bz2xcy2vwz] {
        background: var(--hover-bg);
        color: var(--text-primary);
    }
}

.filter-controls[b-bz2xcy2vwz] {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.filter-select[b-bz2xcy2vwz] {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    background: var(--input-bg);
    color: var(--text-primary);
    cursor: pointer;
    transition: border-color 0.2s;
    min-width: 200px;
}

.filter-select:focus[b-bz2xcy2vwz] {
    outline: none;
    border-color: var(--accent-primary);
}

.btn-clear-filters[b-bz2xcy2vwz] {
    padding: 1rem 1.5rem;
    background: var(--hover-bg);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

@media (hover: hover) {
    .btn-clear-filters:hover[b-bz2xcy2vwz] {
        background: var(--border-color);
        color: var(--text-primary);
    }
}

.results-info[b-bz2xcy2vwz] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.results-count[b-bz2xcy2vwz] {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Exercise Grid */
.exercises-grid-container[b-bz2xcy2vwz] {
    max-height: 950px;
    overflow-y: auto;
    margin-bottom: 2rem;
}

.exercises-grid[b-bz2xcy2vwz] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.exercise-card[b-bz2xcy2vwz] {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

@media (hover: hover) {
    .exercise-card:hover[b-bz2xcy2vwz] {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        border-color: var(--accent-primary);
    }
}

.exercise-card-image[b-bz2xcy2vwz] {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.exercise-card-image img[b-bz2xcy2vwz] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

@media (hover: hover) {
    .exercise-card:hover .exercise-card-image img[b-bz2xcy2vwz] {
        transform: scale(1.05);
    }
}

.exercise-card-header[b-bz2xcy2vwz] {
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 1.5rem;
}

.exercise-card-title[b-bz2xcy2vwz] {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    color: var(--accent-primary);
    line-height: 1.4;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    width: fit-content;
    transition: all 0.2s;
}

@media (hover: hover) {
    .exercise-card-title:hover[b-bz2xcy2vwz] {
        color: var(--accent-secondary);
        text-decoration: underline;
    }
}

.exercise-card-body[b-bz2xcy2vwz] {
    flex: 1;
    padding: 1rem 1.5rem 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.6rem;
}

.exercise-muscles[b-bz2xcy2vwz] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.exercise-muscles .bi[b-bz2xcy2vwz] {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 0;
}

.muscle-tags[b-bz2xcy2vwz] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.muscle-tag[b-bz2xcy2vwz] {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.375rem 0.75rem;
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid var(--border-color);
}

.muscle-tag .bi[b-bz2xcy2vwz] {
    font-size: 1rem;
    color: var(--accent-primary);
}

.exercise-card-footer[b-bz2xcy2vwz] {
    padding: 1rem 1.5rem 1.5rem 1.5rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 0.5rem;
}

.btn-view-exercise[b-bz2xcy2vwz] {
    flex: 1;
    padding: 0.65rem 0.75rem;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: var(--accent-contrast);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

@media (hover: hover) {
    .btn-view-exercise:hover[b-bz2xcy2vwz] {
        background: linear-gradient(135deg, var(--accent-secondary), var(--accent-primary));
        transform: scale(1.02);
    }
}

.btn-add-to-workout[b-bz2xcy2vwz] {
    flex: 1;
    padding: 0.65rem 0.75rem;
    background: var(--card-bg);
    color: var(--text-primary);
    border: 2px solid var(--accent-primary);
    border-radius: 10px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

@media (hover: hover) {
    .btn-add-to-workout:hover[b-bz2xcy2vwz] {
        background: var(--accent-primary);
        color: var(--accent-contrast);
        transform: scale(1.02);
    }
}

.btn-add-to-workout-detail[b-bz2xcy2vwz] {
    padding: 1rem 2rem;
    background: var(--accent-primary);
    color: var(--accent-contrast);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

@media (hover: hover) {
    .btn-add-to-workout-detail:hover[b-bz2xcy2vwz] {
        background: var(--accent-secondary);
        transform: scale(1.05);
    }
}

/* Loading State */
.exercises-loading[b-bz2xcy2vwz] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    color: var(--text-muted);
}

.exercises-loading .spinner-border[b-bz2xcy2vwz] {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
}

.exercises-loading p[b-bz2xcy2vwz] {
    font-size: 1.1rem;
    margin: 0;
}

/* Empty State */
.exercises-empty[b-bz2xcy2vwz] {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--card-bg);
    border: 2px dashed var(--border-color);
    border-radius: 16px;
}

.exercises-empty .bi[b-bz2xcy2vwz] {
    font-size: 4rem;
    color: var(--text-muted);
    opacity: 0.5;
    display: block;
    margin-bottom: 1rem;
}

.exercises-empty h2[b-bz2xcy2vwz] {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: var(--text-primary);
}

.exercises-empty p[b-bz2xcy2vwz] {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 0 0 1.5rem 0;
}

.btn-clear-filters-large[b-bz2xcy2vwz] {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: var(--accent-contrast);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.2s;
}

@media (hover: hover) {
    .btn-clear-filters-large:hover[b-bz2xcy2vwz] {
        background: linear-gradient(135deg, var(--accent-secondary), var(--accent-primary));
        transform: scale(1.05);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .exercises-page[b-bz2xcy2vwz] {
        padding: 1rem;
    }

    .exercises-title h1[b-bz2xcy2vwz] {
        font-size: 2rem;
    }

    .exercises-subtitle[b-bz2xcy2vwz] {
        font-size: 1rem;
    }

    .exercises-controls[b-bz2xcy2vwz] {
        padding: 1rem;
    }

    .search-filter-row[b-bz2xcy2vwz] {
        flex-direction: column;
    }

    .exercise-search-bar[b-bz2xcy2vwz] {
        min-width: 100%;
    }

    .filter-controls[b-bz2xcy2vwz] {
        flex-direction: column;
        width: 100%;
    }

    .filter-select[b-bz2xcy2vwz] {
        width: 100%;
    }

    .btn-clear-filters[b-bz2xcy2vwz] {
        width: 100%;
        justify-content: center;
    }

    .exercises-grid[b-bz2xcy2vwz] {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .exercises-grid[b-bz2xcy2vwz] {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

/* Mobile Fullscreen Modal for Add to Workout */
@media (max-width: 767px) {
    .modal-overlay[b-bz2xcy2vwz] {
        padding: 0;
        align-items: stretch;
    }

    .modal-content[b-bz2xcy2vwz],
    .modal-content-small[b-bz2xcy2vwz] {
        width: 100%;
        max-width: 100%;
        height: 100%;
        max-height: 100%;
        margin: 0;
        border-radius: 0;
        display: flex;
        flex-direction: column;
    }

    .modal-header[b-bz2xcy2vwz] {
        padding: calc(env(safe-area-inset-top, 0px) + 1rem) 1rem 1rem;
        flex-shrink: 0;
    }

    .modal-body[b-bz2xcy2vwz] {
        flex: 1;
        overflow-y: auto;
        padding: 1rem;
    }

    .modal-footer[b-bz2xcy2vwz] {
        padding: 1rem 1rem calc(env(safe-area-inset-bottom, 0px) + 1rem);
        flex-shrink: 0;
    }

    .workout-option[b-bz2xcy2vwz] {
        min-height: 48px;
    }
}

/* Muscle Selection Diagram */
.muscle-target-panel[b-bz2xcy2vwz] {
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.muscle-target-header[b-bz2xcy2vwz] {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-secondary);
}

.muscle-target-header h2[b-bz2xcy2vwz] {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: var(--text-primary);
}

.muscle-target-header p[b-bz2xcy2vwz] {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
}

.muscle-target-content[b-bz2xcy2vwz] {
    padding: 1.5rem;
}

.muscle-target-figures[b-bz2xcy2vwz] {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.muscle-diagram[b-bz2xcy2vwz] {
    max-width: 100%;
    height: auto;
}

.muscle-diagram image[b-bz2xcy2vwz] {
    opacity: 1;
}

.muscle-segment[b-bz2xcy2vwz] {
    cursor: pointer;
    transition: all 0.3s ease;
}

.muscle-segment path[b-bz2xcy2vwz] {
    fill: rgba(124, 105, 255, 0.2);
    stroke: rgba(124, 105, 255, 0.4);
    stroke-width: 1.5;
    transition: all 0.3s ease;
    pointer-events: all;
    opacity: 0.5;
}

@media (hover: hover) {
    .muscle-segment:hover path[b-bz2xcy2vwz] {
        fill: rgba(124, 105, 255, 0.4);
        stroke: rgba(124, 105, 255, 0.7);
        stroke-width: 2.5;
        opacity: 0.85;
    }
}

.muscle-segment.is-active path[b-bz2xcy2vwz] {
    fill: rgba(124, 105, 255, 0.5);
    stroke: var(--accent-primary);
    stroke-width: 3;
    opacity: 0.9;
}

.muscle-segment.is-disabled[b-bz2xcy2vwz] {
    cursor: not-allowed;
    opacity: 0.3;
}

.muscle-segment.is-disabled path[b-bz2xcy2vwz] {
    fill: rgba(150, 150, 150, 0.1);
    stroke: rgba(150, 150, 150, 0.2);
}

.muscle-target-actions[b-bz2xcy2vwz] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.muscle-target-button[b-bz2xcy2vwz] {
    padding: 0.75rem 1.5rem;
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.2s;
}

@media (hover: hover) {
    .muscle-target-button:hover:not(:disabled)[b-bz2xcy2vwz] {
        background: var(--hover-bg);
        color: var(--text-primary);
        border-color: var(--accent-primary);
    }
}

.muscle-target-button.is-active[b-bz2xcy2vwz] {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: var(--accent-contrast);
    border-color: var(--accent-primary);
}

.muscle-target-button:disabled[b-bz2xcy2vwz] {
    cursor: not-allowed;
    opacity: 0.4;
}

/* Modal Styles */
.modal-overlay[b-bz2xcy2vwz] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 1rem;
}

.modal-content[b-bz2xcy2vwz] {
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.modal-header[b-bz2xcy2vwz] {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-header h3[b-bz2xcy2vwz] {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.btn-close-modal[b-bz2xcy2vwz] {
    min-width: 48px;
    min-height: 48px;
    width: 48px;
    height: 48px;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0;
    font-size: 1.5rem;
    border-radius: 50%;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (hover: hover) {
    .btn-close-modal:hover[b-bz2xcy2vwz] {
        background: var(--hover-bg, rgba(0, 0, 0, 0.05));
        color: var(--text-primary);
    }
}

.modal-body[b-bz2xcy2vwz] {
    padding: 1.5rem;
    overflow-y: auto;
    flex: 1;
}

.modal-context[b-bz2xcy2vwz] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--bg-tertiary);
    border-radius: 8px;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.modal-context strong[b-bz2xcy2vwz] {
    color: var(--accent-primary);
    font-weight: 600;
}

.modal-context .bi[b-bz2xcy2vwz] {
    font-size: 1.25rem;
    color: var(--accent-primary);
}

.modal-content-small[b-bz2xcy2vwz] {
    max-width: 500px;
}

.modal-footer[b-bz2xcy2vwz] {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
}

.btn-secondary[b-bz2xcy2vwz] {
    padding: 0.625rem 1.25rem;
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

@media (hover: hover) {
    .btn-secondary:hover[b-bz2xcy2vwz] {
        background: var(--hover-bg);
        border-color: var(--accent-primary);
    }
}

.btn-danger[b-bz2xcy2vwz] {
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

@media (hover: hover) {
    .btn-danger:hover[b-bz2xcy2vwz] {
        background: linear-gradient(135deg, #dc2626, #b91c1c);
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
    }
}

.modal-body p[b-bz2xcy2vwz] {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

.modal-body strong[b-bz2xcy2vwz] {
    color: var(--text-primary);
    font-weight: 600;
}

.workout-selection[b-bz2xcy2vwz] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.workout-option[b-bz2xcy2vwz] {
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 1.25rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

@media (hover: hover) {
    .workout-option:hover[b-bz2xcy2vwz] {
        border-color: var(--accent-primary);
        background: var(--hover-bg);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
}

.workout-option-info[b-bz2xcy2vwz] {
    flex: 1;
}

.workout-option-info h4[b-bz2xcy2vwz] {
    margin: 0 0 0.25rem 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.workout-option-info p[b-bz2xcy2vwz] {
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.workout-exercise-count[b-bz2xcy2vwz] {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    display: block;
}

.workout-option .bi[b-bz2xcy2vwz] {
    font-size: 1.5rem;
    color: var(--accent-primary);
    transition: transform 0.2s;
}

@media (hover: hover) {
    .workout-option:hover .bi[b-bz2xcy2vwz] {
        transform: scale(1.2);
    }
}

.workout-option.already-added[b-bz2xcy2vwz] {
    background: var(--bg-tertiary);
    border-color: var(--border-color);
    opacity: 0.7;
    cursor: default;
}

@media (hover: hover) {
    .workout-option.already-added:hover[b-bz2xcy2vwz] {
        transform: none;
        box-shadow: none;
    }
}

.workout-option.already-added .bi[b-bz2xcy2vwz] {
    color: #10b981;
}

@media (hover: hover) {
    .workout-option.already-added:hover .bi[b-bz2xcy2vwz] {
        transform: none;
    }
}

.already-added-badge[b-bz2xcy2vwz] {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.5rem;
    padding: 0.35rem 0.75rem;
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
}

.already-added-badge .bi[b-bz2xcy2vwz] {
    font-size: 0.9rem;
}

.no-workouts[b-bz2xcy2vwz] {
    text-align: center;
    padding: 3rem 2rem;
}

.no-workouts .bi[b-bz2xcy2vwz] {
    font-size: 4rem;
    color: var(--text-muted);
    opacity: 0.5;
    display: block;
    margin-bottom: 1rem;
}

.no-workouts p[b-bz2xcy2vwz] {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 0 0 1.5rem 0;
}

.btn-create-workout[b-bz2xcy2vwz] {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: var(--accent-contrast);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

@media (hover: hover) {
    .btn-create-workout:hover[b-bz2xcy2vwz] {
        background: linear-gradient(135deg, var(--accent-secondary), var(--accent-primary));
        transform: scale(1.05);
    }
}
/* /Components/Pages/Landing.razor.rz.scp.css */
.landing-page[b-5i5xn0dafp] {
    min-height: 100vh;
    background: var(--bg-primary);
}

/* Hero Section */
.hero-section[b-5i5xn0dafp] {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: visible;
}

.hero-section[b-5i5xn0dafp]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-container[b-5i5xn0dafp] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-content[b-5i5xn0dafp] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 80vh;
}

.hero-text[b-5i5xn0dafp] {
    color: white;
}

.hero-title[b-5i5xn0dafp] {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.gradient-text[b-5i5xn0dafp] {
    background: linear-gradient(45deg, #ffffff 0%, #f0f8ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle[b-5i5xn0dafp] {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.5;
    max-width: 500px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions[b-5i5xn0dafp] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.workout-buttons[b-5i5xn0dafp] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 400px;
}

.btn-workout[b-5i5xn0dafp] {
    background: white;
    color: var(--accent-primary);
    border: none;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-workout[b-5i5xn0dafp]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(76, 175, 80, 0.3), transparent);
    transition: left 0.5s ease;
}

@media (hover: hover) {
    .btn-workout:hover[b-5i5xn0dafp]::before {
        left: 100%;
    }
}

/* Sequential button highlight animation */
@keyframes buttonHighlight-b-5i5xn0dafp {
    0% {
        background: white;
        color: var(--accent-primary);
        transform: scale(1);
    }
    10% {
        background: #4CAF50;
        color: white;
        transform: scale(1.05);
    }
    20% {
        background: #4CAF50;
        color: white;
        transform: scale(1.05);
    }
    30% {
        background: white;
        color: var(--accent-primary);
        transform: scale(1);
    }
    100% {
        background: white;
        color: var(--accent-primary);
        transform: scale(1);
    }
}

/* Sequential animation - each button highlights in sequence with full pauses */
.push-btn[b-5i5xn0dafp] {
    animation: buttonHighlight-b-5i5xn0dafp 6s ease-in-out 0s infinite;
}

.pull-btn[b-5i5xn0dafp] {
    animation: buttonHighlight-b-5i5xn0dafp 6s ease-in-out 2s infinite;
}

.legs-btn[b-5i5xn0dafp] {
    animation: buttonHighlight-b-5i5xn0dafp 6s ease-in-out 4s infinite;
}

@media (hover: hover) {
    /* Stop all animations when any button is hovered */
    .workout-buttons:hover .btn-workout[b-5i5xn0dafp] {
        animation: none !important;
    }
}

@media (hover: hover) {
    .btn-workout:hover[b-5i5xn0dafp] {
        background: #4CAF50 !important;
        color: white !important;
        transform: translateY(-2px) scale(1.05) !important;
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
    }
}

.create-workout-section[b-5i5xn0dafp] {
    margin-top: 1rem;
}

.btn-create-workout[b-5i5xn0dafp] {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 200px;
}

@media (hover: hover) {
    .btn-create-workout:hover[b-5i5xn0dafp] {
        background: rgba(255, 255, 255, 0.3);
        border-color: rgba(255, 255, 255, 0.5);
        color: white;
        transform: translateY(-2px);
    }
}

.cta-primary[b-5i5xn0dafp] {
    background: white;
    color: var(--accent-primary);
    border: none;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

@media (hover: hover) {
    .cta-primary:hover[b-5i5xn0dafp] {
        transform: translateY(-2px);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
        color: var(--accent-primary);
    }
}

.cta-secondary[b-5i5xn0dafp] {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

@media (hover: hover) {
    .cta-secondary:hover[b-5i5xn0dafp] {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.5);
        color: white;
        transform: translateY(-2px);
    }
}

/* Hero Image */
.hero-image[b-5i5xn0dafp] {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
    padding: 20px;
}

.uncle-sam-container[b-5i5xn0dafp] {
    position: relative;
    max-width: 400px;
    border-radius: 20px;
    overflow: visible;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.3s ease;
    cursor: pointer;
    user-select: none;
    z-index: 100;
}

@media (hover: hover) {
    .uncle-sam-container:hover[b-5i5xn0dafp] {
        transform: perspective(1000px) rotateY(-2deg) rotateX(2deg) scale(1.02);
    }
}

.uncle-sam-container:active[b-5i5xn0dafp] {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(0.92);
    transition: transform 0.1s cubic-bezier(0.4, 0, 0.6, 1);
}

.uncle-sam-image[b-5i5xn0dafp] {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0.7) contrast(1.2) saturate(0.8) hue-rotate(200deg);
}

/* Gym burst animation */
.gym-emoji[b-5i5xn0dafp] {
    position: fixed;
    font-size: 2.5rem;
    pointer-events: none;
    z-index: 9999;
    animation: gymFly-b-5i5xn0dafp 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes gymFly-b-5i5xn0dafp {
    0% {
        transform: translate(var(--tx-20), var(--ty-20)) rotate(var(--rot-20)) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(var(--tx), var(--ty)) rotate(var(--rot)) scale(0.5);
        opacity: 0;
    }
}

.image-overlay[b-5i5xn0dafp] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    mix-blend-mode: multiply;
}

/* Features Section */
.features-section[b-5i5xn0dafp] {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.container[b-5i5xn0dafp] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.features-header[b-5i5xn0dafp] {
    text-align: center;
    margin-bottom: 4rem;
}

.bento-section .section-title[b-5i5xn0dafp],
.features-section .section-title[b-5i5xn0dafp] {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-subtitle[b-5i5xn0dafp] {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid[b-5i5xn0dafp] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card[b-5i5xn0dafp] {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

@media (hover: hover) {
    .feature-card:hover[b-5i5xn0dafp] {
        transform: translateY(-4px);
        box-shadow: 0 20px 40px -12px rgba(33, 37, 79, 0.25);
    }
}

.feature-icon[b-5i5xn0dafp] {
    width: 80px;
    height: 80px;
    background: var(--accent-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.feature-card h3[b-5i5xn0dafp] {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.feature-card p[b-5i5xn0dafp] {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* CTA Section */
.cta-section[b-5i5xn0dafp] {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 6rem 0;
    text-align: center;
}

.cta-content[b-5i5xn0dafp] {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title[b-5i5xn0dafp] {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-subtitle[b-5i5xn0dafp] {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.cta-actions[b-5i5xn0dafp] {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Responsive Design */
@media (max-width: 767px) {
    .hero-container[b-5i5xn0dafp] {
        padding: 0 1rem;
    }

    .hero-content[b-5i5xn0dafp] {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-title[b-5i5xn0dafp] {
        font-size: 2.5rem;
    }

    .hero-actions[b-5i5xn0dafp] {
        justify-content: center;
    }

    .uncle-sam-container[b-5i5xn0dafp] {
        max-width: 300px;
        transform: none;
    }

    @media (hover: hover) {
        .uncle-sam-container:hover[b-5i5xn0dafp] {
            transform: scale(1.02);
        }
    }

    .features-grid[b-5i5xn0dafp] {
        grid-template-columns: 1fr;
    }

    .cta-actions[b-5i5xn0dafp] {
        flex-direction: column;
        align-items: center;
    }

    .btn-workout[b-5i5xn0dafp],
    .btn-create-workout[b-5i5xn0dafp],
    .cta-primary[b-5i5xn0dafp],
    .cta-secondary[b-5i5xn0dafp] {
        min-height: 48px;
    }

    .feature-card[b-5i5xn0dafp] {
        padding: 2rem 1.5rem;
    }
}

/* ========================================
   BENTO GRID SECTION
   ======================================== */

/* Simple fade-in animations (replaces AOS) */
@keyframes fadeInUp-b-5i5xn0dafp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.bento-section[b-5i5xn0dafp] {
    padding: 6rem 0;
    background: var(--bg-primary);
    animation: fadeInUp-b-5i5xn0dafp 0.6s ease-out;
}

.bento-section .section-header[b-5i5xn0dafp] {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-label[b-5i5xn0dafp] {
    color: var(--accent-primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    display: block;
}

.bento-grid[b-5i5xn0dafp] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.glass-card[b-5i5xn0dafp] {
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

@media (hover: hover) {
    .glass-card:hover[b-5i5xn0dafp] {
        transform: translateY(-4px);
        box-shadow: 0 20px 40px -12px rgba(124, 105, 255, 0.25);
        border-color: var(--accent-primary);
    }
}

@media (hover: hover) {
    :global(body.dark-theme) .glass-card:hover[b-5i5xn0dafp] {
        box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
    }
}

.bento-card[b-5i5xn0dafp] {
    min-height: 280px;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    animation: fadeInUp-b-5i5xn0dafp 0.6s ease-out backwards;
}

.bento-card:nth-child(1)[b-5i5xn0dafp] { animation-delay: 0.1s; }
.bento-card:nth-child(2)[b-5i5xn0dafp] { animation-delay: 0.15s; }
.bento-card:nth-child(3)[b-5i5xn0dafp] { animation-delay: 0.2s; }
.bento-card:nth-child(4)[b-5i5xn0dafp] { animation-delay: 0.25s; }

.bento-icon-wrapper[b-5i5xn0dafp] {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.bento-icon-wrapper.workout-icon[b-5i5xn0dafp] { background: linear-gradient(135deg, #dc2626, #ef4444); }
.bento-icon-wrapper.notes-icon[b-5i5xn0dafp] { background: linear-gradient(135deg, #d97706, #f59e0b); }
.bento-icon-wrapper.analytics-icon[b-5i5xn0dafp] { background: linear-gradient(135deg, #16a34a, #22c55e); }
.bento-icon-wrapper.exercise-icon[b-5i5xn0dafp] { background: linear-gradient(135deg, #2563eb, #3b82f6); }

.bento-card-title[b-5i5xn0dafp] {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.bento-card-desc[b-5i5xn0dafp] {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.bento-visual[b-5i5xn0dafp] {
    height: 100px;
    margin-top: auto;
    background: var(--bg-tertiary);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-light);
}

/* Bento Visual: Workout Sessions */
.bento-workout-visual[b-5i5xn0dafp] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.75rem;
    position: relative;
}

.mini-set-row[b-5i5xn0dafp] {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-secondary);
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid var(--border-light);
}

.mini-exercise[b-5i5xn0dafp] {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
    min-width: 70px;
}

.mini-rep-boxes[b-5i5xn0dafp] {
    display: flex;
    gap: 4px;
}

.rep-box[b-5i5xn0dafp] {
    width: 24px;
    height: 24px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-light);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-primary);
}

.rep-box.filling[b-5i5xn0dafp] {
    background: rgba(239, 68, 68, 0.2);
    border-color: #ef4444;
    animation: repFill-b-5i5xn0dafp 3s ease infinite;
}

@keyframes repFill-b-5i5xn0dafp {
    0%, 20% { background: var(--bg-tertiary); border-color: var(--border-light); }
    40%, 100% { background: rgba(239, 68, 68, 0.2); border-color: #ef4444; }
}

.mini-pr-badge[b-5i5xn0dafp] {
    position: absolute;
    top: 8px;
    right: 12px;
    background: #ef4444;
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.6rem;
    font-weight: 700;
    opacity: 0;
    transform: scale(0.5);
    animation: prBadgePop-b-5i5xn0dafp 3s ease infinite;
}

@keyframes prBadgePop-b-5i5xn0dafp {
    0%, 50% { opacity: 0; transform: scale(0.5); }
    60% { opacity: 1; transform: scale(1.2); }
    70%, 90% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(0.5); }
}

/* Bento Visual: Quick Notes */
.bento-notes-visual[b-5i5xn0dafp] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
}

.note-card[b-5i5xn0dafp] {
    background: var(--bg-secondary);
    padding: 10px 16px;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
}

.note-text[b-5i5xn0dafp] {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
    font-family: monospace;
}

.cursor[b-5i5xn0dafp] {
    color: var(--accent-primary);
    animation: blink-b-5i5xn0dafp 1s step-end infinite;
    margin-left: 2px;
}

@keyframes blink-b-5i5xn0dafp {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Bento Visual: Analytics */
.bento-analytics-visual[b-5i5xn0dafp] {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 100%;
    padding: 1rem;
}

.mini-bar-chart[b-5i5xn0dafp] {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 60px;
}

.mini-bar-chart .bar[b-5i5xn0dafp] {
    width: 20px;
    background: linear-gradient(to top, #22c55e, #4ade80);
    border-radius: 4px 4px 0 0;
    animation: barGrow-b-5i5xn0dafp 3s ease infinite;
}

.bar-1[b-5i5xn0dafp] { height: 30px; animation-delay: 0s; }
.bar-2[b-5i5xn0dafp] { height: 45px; animation-delay: 0.1s; }
.bar-3[b-5i5xn0dafp] { height: 35px; animation-delay: 0.2s; }
.bar-4[b-5i5xn0dafp] { height: 55px; animation-delay: 0.3s; }
.bar-5[b-5i5xn0dafp] { height: 50px; animation-delay: 0.4s; }

@keyframes barGrow-b-5i5xn0dafp {
    0%, 10% { transform: scaleY(0); transform-origin: bottom; }
    30%, 100% { transform: scaleY(1); }
}

/* Bento Visual: Exercise Library / Muscle Diagram */
.bento-muscle-visual[b-5i5xn0dafp] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.muscle-silhouette[b-5i5xn0dafp] {
    position: relative;
    width: 50px;
    height: 80px;
}

.muscle-silhouette .muscle[b-5i5xn0dafp] {
    position: absolute;
    border-radius: 4px;
    background: var(--border-light);
    transition: background 0.3s ease;
}

.muscle.chest[b-5i5xn0dafp] {
    top: 15px;
    left: 10px;
    width: 30px;
    height: 15px;
    animation: muscleHighlight-b-5i5xn0dafp 4s ease infinite 0s;
}

.muscle.shoulders[b-5i5xn0dafp] {
    top: 10px;
    left: 5px;
    width: 40px;
    height: 8px;
    border-radius: 8px;
    animation: muscleHighlight-b-5i5xn0dafp 4s ease infinite 0.8s;
}

.muscle.arms[b-5i5xn0dafp] {
    top: 18px;
    left: 0;
    width: 8px;
    height: 25px;
    animation: muscleHighlight-b-5i5xn0dafp 4s ease infinite 1.6s;
}

.muscle.arms[b-5i5xn0dafp]::after {
    content: '';
    position: absolute;
    right: -42px;
    width: 8px;
    height: 25px;
    background: inherit;
    border-radius: 4px;
}

.muscle.core[b-5i5xn0dafp] {
    top: 32px;
    left: 12px;
    width: 26px;
    height: 18px;
    animation: muscleHighlight-b-5i5xn0dafp 4s ease infinite 2.4s;
}

.muscle.legs[b-5i5xn0dafp] {
    top: 52px;
    left: 8px;
    width: 14px;
    height: 25px;
    animation: muscleHighlight-b-5i5xn0dafp 4s ease infinite 3.2s;
}

.muscle.legs[b-5i5xn0dafp]::after {
    content: '';
    position: absolute;
    right: -20px;
    width: 14px;
    height: 25px;
    background: inherit;
    border-radius: 4px;
}

@keyframes muscleHighlight-b-5i5xn0dafp {
    0%, 15% { background: var(--border-light); }
    20%, 35% { background: #3b82f6; }
    40%, 100% { background: var(--border-light); }
}

/* ========================================
   FEATURE DEEP DIVE SECTIONS
   ======================================== */

.feature-section[b-5i5xn0dafp] {
    padding: 6rem 0;
    position: relative;
    background: var(--bg-primary);
    animation: fadeInUp-b-5i5xn0dafp 0.6s ease-out;
}

.feature-section:nth-child(even)[b-5i5xn0dafp] {
    background: var(--bg-secondary);
}

.feature-container[b-5i5xn0dafp] {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 0 1.5rem;
}

.feature-container.reverse[b-5i5xn0dafp] {
    flex-direction: row-reverse;
}

.feature-content[b-5i5xn0dafp] {
    flex: 1;
}

.feature-visual[b-5i5xn0dafp] {
    flex: 1;
}

.feature-tag[b-5i5xn0dafp] {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-tag.workout-tag[b-5i5xn0dafp] {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.feature-tag.notes-tag[b-5i5xn0dafp] {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}

.feature-tag.analytics-tag[b-5i5xn0dafp] {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.feature-tag.exercise-tag[b-5i5xn0dafp] {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.text-secondary[b-5i5xn0dafp] {
    color: var(--text-secondary);
}

.mb-4[b-5i5xn0dafp] {
    margin-bottom: 1.5rem;
}

.feature-list[b-5i5xn0dafp] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li[b-5i5xn0dafp] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.feature-list li i[b-5i5xn0dafp] {
    color: var(--accent-primary);
    font-size: 1rem;
}

.mockup-card[b-5i5xn0dafp] {
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.3s ease;
}

:global(body.dark-theme) .mockup-card[b-5i5xn0dafp] {
    background: #1a1a1a;
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

@media (hover: hover) {
    .feature-section:hover .mockup-card[b-5i5xn0dafp] {
        transform: translateY(-5px);
    }
}

/* Feature Visual: Workout Sessions */
.visual-workout-container[b-5i5xn0dafp] {
    padding: 24px;
    background: var(--bg-primary);
    min-height: 350px;
    position: relative;
}

:global(body.dark-theme) .visual-workout-container[b-5i5xn0dafp] {
    background: #1a1a1a;
}

.workout-header[b-5i5xn0dafp] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
}

.workout-name[b-5i5xn0dafp] {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.workout-timer[b-5i5xn0dafp] {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-primary);
    font-family: monospace;
}

.workout-exercise-row[b-5i5xn0dafp] {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border-light);
    margin-bottom: 12px;
}

:global(body.dark-theme) .workout-exercise-row[b-5i5xn0dafp] {
    background: #222;
    border-color: #333;
}

.exercise-info[b-5i5xn0dafp] {
    flex: 1;
}

.exercise-name[b-5i5xn0dafp] {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.exercise-sets[b-5i5xn0dafp] {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.set-boxes[b-5i5xn0dafp] {
    display: flex;
    gap: 8px;
}

.set-box[b-5i5xn0dafp] {
    width: 50px;
    height: 50px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.set-box.completed[b-5i5xn0dafp] {
    background: rgba(239, 68, 68, 0.1);
    border-color: #ef4444;
}

.set-box.active[b-5i5xn0dafp] {
    background: rgba(239, 68, 68, 0.2);
    border-color: #ef4444;
    animation: setActive-b-5i5xn0dafp 2s ease infinite;
}

@keyframes setActive-b-5i5xn0dafp {
    0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4); }
    50% { box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.2); }
}

.set-box.pending[b-5i5xn0dafp] {
    opacity: 0.5;
}

.set-weight[b-5i5xn0dafp] {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
}

.set-reps[b-5i5xn0dafp] {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.check-circle[b-5i5xn0dafp] {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ef4444;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.5);
    animation: checkPop-b-5i5xn0dafp 3s ease infinite;
}

.check-circle.pending[b-5i5xn0dafp] {
    background: var(--bg-tertiary);
    border: 2px solid var(--border-light);
    animation: none;
    opacity: 1;
    transform: scale(1);
}

@keyframes checkPop-b-5i5xn0dafp {
    0%, 40% { opacity: 0; transform: scale(0.5); }
    50% { opacity: 1; transform: scale(1.2); }
    60%, 90% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(0.5); }
}

.pr-celebration[b-5i5xn0dafp] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: #ef4444;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.6);
    opacity: 0;
    animation: prPop-b-5i5xn0dafp 3s ease infinite;
}

@keyframes prPop-b-5i5xn0dafp {
    0%, 55% { opacity: 0; transform: translate(-50%, -50%) scale(0); }
    65% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
    75%, 90% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(0.5); }
}

/* Feature Visual: Quick Notes */
.visual-notes-container[b-5i5xn0dafp] {
    padding: 24px;
    background: var(--bg-primary);
    min-height: 350px;
}

:global(body.dark-theme) .visual-notes-container[b-5i5xn0dafp] {
    background: #1a1a1a;
}

.notes-header[b-5i5xn0dafp] {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    color: var(--text-primary);
    font-weight: 600;
}

.notes-header i[b-5i5xn0dafp] {
    color: #f59e0b;
}

.note-input-area[b-5i5xn0dafp] {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
    min-height: 80px;
}

:global(body.dark-theme) .note-input-area[b-5i5xn0dafp] {
    background: #222;
    border-color: #333;
}

.note-typing[b-5i5xn0dafp] {
    display: flex;
    align-items: center;
    font-family: monospace;
    font-size: 1rem;
    color: var(--text-primary);
}

.typed-text[b-5i5xn0dafp] {
    overflow: hidden;
    white-space: nowrap;
    animation: typing-b-5i5xn0dafp 3s steps(15) infinite;
}

@keyframes typing-b-5i5xn0dafp {
    0%, 10% { width: 0; }
    40%, 100% { width: 100%; }
}

.typing-cursor[b-5i5xn0dafp] {
    width: 2px;
    height: 1.2em;
    background: var(--accent-primary);
    margin-left: 2px;
    animation: cursorBlink-b-5i5xn0dafp 1s step-end infinite;
}

@keyframes cursorBlink-b-5i5xn0dafp {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.note-parsed-result[b-5i5xn0dafp] {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 16px;
    opacity: 0;
    transform: translateY(10px);
    animation: parseSlide-b-5i5xn0dafp 3s ease infinite;
}

:global(body.dark-theme) .note-parsed-result[b-5i5xn0dafp] {
    background: #222;
    border-color: #333;
}

@keyframes parseSlide-b-5i5xn0dafp {
    0%, 45% { opacity: 0; transform: translateY(10px); }
    55%, 90% { opacity: 1; transform: translateY(0); }
    100% { opacity: 1; transform: translateY(0); }
}

.parsed-header[b-5i5xn0dafp] {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: #8b5cf6;
    font-size: 0.85rem;
    font-weight: 600;
}

.parsed-exercise[b-5i5xn0dafp] {
    background: var(--bg-tertiary);
    border-radius: 8px;
    padding: 12px;
}

:global(body.dark-theme) .parsed-exercise[b-5i5xn0dafp] {
    background: #2a2a2a;
}

.parsed-name[b-5i5xn0dafp] {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.parsed-sets[b-5i5xn0dafp] {
    display: flex;
    gap: 8px;
}

.parsed-set[b-5i5xn0dafp] {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Feature Visual: Analytics */
.visual-analytics-container[b-5i5xn0dafp] {
    padding: 24px;
    background: var(--bg-primary);
    min-height: 350px;
}

:global(body.dark-theme) .visual-analytics-container[b-5i5xn0dafp] {
    background: #1a1a1a;
}

.analytics-header[b-5i5xn0dafp] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.analytics-title[b-5i5xn0dafp] {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.analytics-trend[b-5i5xn0dafp] {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.9rem;
    font-weight: 600;
}

.analytics-trend.up[b-5i5xn0dafp] {
    color: #22c55e;
}

.volume-chart[b-5i5xn0dafp] {
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border-light);
    padding: 16px;
    margin-bottom: 20px;
    height: 120px;
}

:global(body.dark-theme) .volume-chart[b-5i5xn0dafp] {
    background: #222;
    border-color: #333;
}

.chart-svg[b-5i5xn0dafp] {
    width: 100%;
    height: 100%;
}

.chart-line[b-5i5xn0dafp] {
    fill: none;
    stroke: #22c55e;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: lineDraw-b-5i5xn0dafp 4s ease forwards infinite;
}

@keyframes lineDraw-b-5i5xn0dafp {
    0%, 10% { stroke-dashoffset: 300; }
    50%, 100% { stroke-dashoffset: 0; }
}

.chart-dot[b-5i5xn0dafp] {
    fill: #22c55e;
    opacity: 0;
    animation: dotAppear-b-5i5xn0dafp 4s ease infinite;
}

@keyframes dotAppear-b-5i5xn0dafp {
    0%, 45% { opacity: 0; }
    55%, 100% { opacity: 1; }
}

.muscle-breakdown[b-5i5xn0dafp] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.muscle-row[b-5i5xn0dafp] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.muscle-name[b-5i5xn0dafp] {
    width: 50px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.muscle-bar[b-5i5xn0dafp] {
    flex: 1;
    height: 8px;
    background: var(--bg-tertiary);
    border-radius: 4px;
    overflow: hidden;
}

:global(body.dark-theme) .muscle-bar[b-5i5xn0dafp] {
    background: #333;
}

.muscle-fill[b-5i5xn0dafp] {
    height: 100%;
    border-radius: 4px;
    transform-origin: left;
    animation: muscleFill-b-5i5xn0dafp 3s ease infinite;
}

.muscle-fill.chest-fill[b-5i5xn0dafp] {
    background: linear-gradient(90deg, #ef4444, #f87171);
    width: 80%;
}

.muscle-fill.back-fill[b-5i5xn0dafp] {
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    width: 70%;
}

.muscle-fill.legs-fill[b-5i5xn0dafp] {
    background: linear-gradient(90deg, #22c55e, #4ade80);
    width: 62%;
}

@keyframes muscleFill-b-5i5xn0dafp {
    0%, 10% { transform: scaleX(0); }
    30%, 100% { transform: scaleX(1); }
}

.muscle-percent[b-5i5xn0dafp] {
    width: 40px;
    text-align: right;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Feature Visual: Exercise Library */
.visual-exercise-container[b-5i5xn0dafp] {
    padding: 24px;
    background: var(--bg-primary);
    min-height: 350px;
    display: flex;
    gap: 24px;
}

:global(body.dark-theme) .visual-exercise-container[b-5i5xn0dafp] {
    background: #1a1a1a;
}

.muscle-diagram[b-5i5xn0dafp] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border-light);
    padding: 16px;
}

:global(body.dark-theme) .muscle-diagram[b-5i5xn0dafp] {
    background: #222;
    border-color: #333;
}

.body-svg[b-5i5xn0dafp] {
    width: 100%;
    max-width: 120px;
    height: auto;
}

.body-part[b-5i5xn0dafp] {
    fill: var(--bg-tertiary);
    stroke: var(--border-light);
    stroke-width: 1;
}

:global(body.dark-theme) .body-part[b-5i5xn0dafp] {
    fill: #333;
    stroke: #444;
}

.muscle-highlight[b-5i5xn0dafp] {
    fill: transparent;
    transition: fill 0.3s ease;
}

.chest-hl[b-5i5xn0dafp] { animation: highlightMuscle-b-5i5xn0dafp 4s ease infinite 0s; }
.shoulder-hl[b-5i5xn0dafp] { animation: highlightMuscle-b-5i5xn0dafp 4s ease infinite 1s; }
.bicep-hl[b-5i5xn0dafp] { animation: highlightMuscle-b-5i5xn0dafp 4s ease infinite 2s; }
.quad-hl[b-5i5xn0dafp] { animation: highlightMuscle-b-5i5xn0dafp 4s ease infinite 3s; }

@keyframes highlightMuscle-b-5i5xn0dafp {
    0%, 15% { fill: transparent; }
    20%, 35% { fill: rgba(59, 130, 246, 0.6); }
    40%, 100% { fill: transparent; }
}

.exercise-list-preview[b-5i5xn0dafp] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.exercise-item[b-5i5xn0dafp] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: var(--bg-secondary);
    border-radius: 10px;
    border: 1px solid var(--border-light);
    font-size: 0.9rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

:global(body.dark-theme) .exercise-item[b-5i5xn0dafp] {
    background: #222;
    border-color: #333;
}

.exercise-item i[b-5i5xn0dafp] {
    color: var(--text-muted);
}

.exercise-item span:nth-child(2)[b-5i5xn0dafp] {
    flex: 1;
    font-weight: 500;
}

.muscle-tag[b-5i5xn0dafp] {
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 4px;
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
    font-weight: 600;
}

.exercise-item.highlighting[b-5i5xn0dafp] {
    border-color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
    animation: itemHighlight-b-5i5xn0dafp 4s ease infinite;
}

@keyframes itemHighlight-b-5i5xn0dafp {
    0%, 15% { border-color: var(--border-light); background: var(--bg-secondary); }
    20%, 35% { border-color: #3b82f6; background: rgba(59, 130, 246, 0.1); }
    40%, 100% { border-color: var(--border-light); background: var(--bg-secondary); }
}

:global(body.dark-theme) .exercise-item.highlighting[b-5i5xn0dafp] {
    animation: itemHighlightDark-b-5i5xn0dafp 4s ease infinite;
}

@keyframes itemHighlightDark-b-5i5xn0dafp {
    0%, 15% { border-color: #333; background: #222; }
    20%, 35% { border-color: #3b82f6; background: rgba(59, 130, 246, 0.15); }
    40%, 100% { border-color: #333; background: #222; }
}

/* ========================================
   RESPONSIVE - BENTO & FEATURES
   ======================================== */

@media (max-width: 900px) {
    .bento-section[b-5i5xn0dafp] { padding: 4rem 0; }
    .bento-grid[b-5i5xn0dafp] { grid-template-columns: 1fr; gap: 16px; }
    .bento-card[b-5i5xn0dafp] { min-height: 240px; }

    .feature-section[b-5i5xn0dafp] { padding: 4rem 0; }
    .feature-container[b-5i5xn0dafp] { flex-direction: column; gap: 2rem; }
    .feature-container.reverse[b-5i5xn0dafp] { flex-direction: column; }

    .mockup-card[b-5i5xn0dafp] { width: 100%; max-width: 400px; margin: 0 auto; }

    .visual-workout-container[b-5i5xn0dafp],
    .visual-notes-container[b-5i5xn0dafp],
    .visual-analytics-container[b-5i5xn0dafp],
    .visual-exercise-container[b-5i5xn0dafp] {
        min-height: 300px;
        padding: 16px;
    }

    .visual-exercise-container[b-5i5xn0dafp] {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .bento-section[b-5i5xn0dafp], .feature-section[b-5i5xn0dafp] { padding: 3rem 0; }

    .bento-section .section-header[b-5i5xn0dafp] { margin-bottom: 2rem; }
    .bento-section .section-title[b-5i5xn0dafp],
    .features-section .section-title[b-5i5xn0dafp] { font-size: 1.5rem; }

    .bento-card[b-5i5xn0dafp] { padding: 1.5rem; min-height: 220px; }
    .bento-card-title[b-5i5xn0dafp] { font-size: 1.25rem; }
    .bento-visual[b-5i5xn0dafp] { height: 80px; }

    .feature-container[b-5i5xn0dafp] { padding: 0 1rem; }
    .feature-list li[b-5i5xn0dafp] { font-size: 0.9rem; }

    .set-boxes[b-5i5xn0dafp] { gap: 4px; }
    .set-box[b-5i5xn0dafp] { width: 40px; height: 40px; }
    .set-weight[b-5i5xn0dafp] { font-size: 0.75rem; }
    .set-reps[b-5i5xn0dafp] { font-size: 0.6rem; }
}
/* /Components/Pages/PrivacyPolicy.razor.rz.scp.css */
.privacy-container[b-6w0dzgr781] {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.privacy-header[b-6w0dzgr781] {
    text-align: center;
    margin-bottom: 3rem;
}

.page-title[b-6w0dzgr781] {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.page-subtitle[b-6w0dzgr781] {
    font-size: 1rem;
    color: var(--text-secondary);
    font-style: italic;
}

.privacy-content[b-6w0dzgr781] {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
}

.privacy-section[b-6w0dzgr781] {
    margin-bottom: 2.5rem;
}

.privacy-section:last-of-type[b-6w0dzgr781] {
    margin-bottom: 0;
}

.privacy-section h2[b-6w0dzgr781] {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-primary);
}

.privacy-section h3[b-6w0dzgr781] {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.privacy-section p[b-6w0dzgr781] {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.privacy-section ul[b-6w0dzgr781] {
    margin: 1rem 0 1rem 1.5rem;
    padding: 0;
}

.privacy-section li[b-6w0dzgr781] {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.privacy-section a[b-6w0dzgr781] {
    color: var(--accent-primary);
    text-decoration: none;
    transition: color 0.2s;
}

@media (hover: hover) {
    .privacy-section a:hover[b-6w0dzgr781] {
        color: var(--accent-secondary);
        text-decoration: underline;
    }
}

.privacy-section strong[b-6w0dzgr781] {
    color: var(--text-primary);
    font-weight: 600;
}

.privacy-footer[b-6w0dzgr781] {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
    text-align: center;
}

.privacy-footer p[b-6w0dzgr781] {
    font-size: 0.938rem;
    color: var(--text-secondary);
    font-style: italic;
}

@media (max-width: 768px) {
    .privacy-container[b-6w0dzgr781] {
        padding: 1rem;
    }

    .page-title[b-6w0dzgr781] {
        font-size: 2rem;
    }

    .privacy-content[b-6w0dzgr781] {
        padding: 1.5rem;
    }

    .privacy-section h2[b-6w0dzgr781] {
        font-size: 1.5rem;
    }

    .privacy-section h3[b-6w0dzgr781] {
        font-size: 1.125rem;
    }
}
/* /Components/Pages/TermsOfService.razor.rz.scp.css */
.terms-container[b-peil1hn3mw] {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.terms-header[b-peil1hn3mw] {
    text-align: center;
    margin-bottom: 3rem;
}

.page-title[b-peil1hn3mw] {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.page-subtitle[b-peil1hn3mw] {
    font-size: 1rem;
    color: var(--text-secondary);
    font-style: italic;
}

.terms-content[b-peil1hn3mw] {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
}

.terms-section[b-peil1hn3mw] {
    margin-bottom: 2.5rem;
}

.terms-section:last-of-type[b-peil1hn3mw] {
    margin-bottom: 0;
}

.intro-section[b-peil1hn3mw] {
    padding: 1.5rem;
    background: var(--bg-tertiary);
    border-radius: 12px;
    border-left: 4px solid var(--accent-primary);
}

.terms-section h2[b-peil1hn3mw] {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-primary);
}

.terms-section h3[b-peil1hn3mw] {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.terms-section p[b-peil1hn3mw] {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.terms-section ul[b-peil1hn3mw] {
    margin: 1rem 0 1rem 1.5rem;
    padding: 0;
}

.terms-section li[b-peil1hn3mw] {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.terms-section a[b-peil1hn3mw] {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

@media (hover: hover) {
    .terms-section a:hover[b-peil1hn3mw] {
        color: var(--accent-secondary);
        text-decoration: underline;
    }
}

.terms-section strong[b-peil1hn3mw] {
    color: var(--text-primary);
    font-weight: 600;
}

.important-notice[b-peil1hn3mw] {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid rgba(239, 68, 68, 0.3);
    border-radius: 12px;
    margin: 1.5rem 0;
}

.important-notice > span[b-peil1hn3mw] {
    font-size: 1.5rem;
    color: #dc2626;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.important-notice h3[b-peil1hn3mw] {
    color: #dc2626;
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 0.75rem 0;
}

.important-notice p[b-peil1hn3mw] {
    color: var(--text-primary);
    font-size: 0.938rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.important-notice p:last-child[b-peil1hn3mw] {
    margin-bottom: 0;
}

.terms-footer[b-peil1hn3mw] {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-light);
    text-align: center;
}

.terms-footer p[b-peil1hn3mw] {
    font-size: 1rem;
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .terms-container[b-peil1hn3mw] {
        padding: 1rem;
    }

    .page-title[b-peil1hn3mw] {
        font-size: 2rem;
    }

    .terms-content[b-peil1hn3mw] {
        padding: 1.5rem;
    }

    .terms-section h2[b-peil1hn3mw] {
        font-size: 1.25rem;
    }

    .terms-section h3[b-peil1hn3mw] {
        font-size: 1.063rem;
    }

    .terms-section p[b-peil1hn3mw],
    .terms-section li[b-peil1hn3mw] {
        font-size: 0.938rem;
    }

    .important-notice[b-peil1hn3mw] {
        flex-direction: column;
        padding: 1.25rem;
    }

    .important-notice > span[b-peil1hn3mw] {
        font-size: 1.25rem;
    }
}
/* /Components/Pages/WorkoutHistory.razor.rz.scp.css */
/* Workout History Page */
.history-container[b-m14386rqwi] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.history-header[b-m14386rqwi] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.history-header h1[b-m14386rqwi] {
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
}

.btn-back[b-m14386rqwi] {
    padding: 0.5rem 0.75rem;
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    min-height: 40px;
}

@media (hover: hover) {
    .btn-back:hover[b-m14386rqwi] {
        background: var(--bg-hover);
        border-color: var(--accent-primary);
    }
}

.empty-state[b-m14386rqwi] {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--card-bg);
    border-radius: 12px;
    border: 2px solid var(--border-color);
}

.empty-icon[b-m14386rqwi] {
    font-size: 4rem;
    color: var(--border-color);
    margin-bottom: 1rem;
}

.empty-state h3[b-m14386rqwi] {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.empty-state p[b-m14386rqwi] {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.btn-primary[b-m14386rqwi] {
    padding: 0.75rem 2rem;
    background: var(--accent-primary);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

@media (hover: hover) {
    .btn-primary:hover[b-m14386rqwi] {
        background: var(--accent-secondary);
    }
}

.sessions-list[b-m14386rqwi] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.session-card[b-m14386rqwi] {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s;
}

@media (hover: hover) {
    .session-card:hover[b-m14386rqwi] {
        border-color: var(--accent-primary);
    }
}

.session-card .session-header[b-m14386rqwi] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--bg-tertiary);
    border-bottom: none;
    margin-bottom: 0;
}

.session-header-actions[b-m14386rqwi] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.session-info h3[b-m14386rqwi] {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: var(--text-primary);
}

.session-card .session-meta[b-m14386rqwi] {
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.25rem;
}

.btn-continue[b-m14386rqwi] {
    padding: 0.5rem 1rem;
    background: var(--accent-primary);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

@media (hover: hover) {
    .btn-continue:hover[b-m14386rqwi] {
        background: var(--accent-secondary);
    }
}

.session-details[b-m14386rqwi] {
    padding: 1.5rem;
    background: var(--card-bg);
    border-top: 1px solid var(--border-color);
}

.exercises-summary[b-m14386rqwi] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.exercise-detail[b-m14386rqwi] {
    background: var(--bg-tertiary);
    border-radius: 8px;
    padding: 1rem;
}

.exercise-detail-header[b-m14386rqwi] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.exercise-detail-image[b-m14386rqwi] {
    width: 45px;
    height: 45px;
    border-radius: 6px;
    object-fit: contain;
    border: 1px solid var(--border-color);
    background: var(--card-bg);
    padding: 2px;
    flex-shrink: 0;
}

.exercise-detail h4[b-m14386rqwi] {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.exercise-history-name[b-m14386rqwi] {
    cursor: pointer;
    display: inline-block;
    width: fit-content;
    color: var(--accent-primary);
    text-decoration: none;
    transition: all 0.2s;
}

@media (hover: hover) {
    .exercise-history-name:hover[b-m14386rqwi] {
        color: var(--accent-secondary);
        text-decoration: underline;
    }
}

.sets-grid[b-m14386rqwi] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.75rem;
}

.set-item[b-m14386rqwi] {
    background: var(--card-bg);
    padding: 0.75rem;
    border-radius: 6px;
    border: 1px solid var(--border-color);
}

.set-label[b-m14386rqwi] {
    font-weight: 600;
    color: var(--text-secondary);
    margin-right: 0.5rem;
}

.set-value[b-m14386rqwi] {
    color: var(--text-primary);
}

.badge[b-m14386rqwi] {
    padding: 0.35rem 0.65rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
}

.bg-success[b-m14386rqwi] {
    background: #198754;
    color: white;
}

.bg-secondary[b-m14386rqwi] {
    background: #6c757d;
    color: white;
}

/* Set completion status in history */
.set-item.completed[b-m14386rqwi] {
    background: rgba(25, 135, 84, 0.1);
    border-left: 3px solid #198754;
}

.set-item.incomplete[b-m14386rqwi] {
    background: rgba(108, 117, 125, 0.1);
    border-left: 3px solid #6c757d;
}

.set-item.completed .set-label[b-m14386rqwi] {
    color: #198754;
    font-weight: 500;
}

.set-item.incomplete .set-label[b-m14386rqwi] {
    color: var(--text-secondary);
}

/* Exercise Notes in History */
.exercise-notes-history[b-m14386rqwi] {
    margin-top: 1rem;
    padding: 0.75rem;
    background: var(--bg-tertiary);
    border-radius: 6px;
    border: 1px solid var(--border-color);
}

.notes-header[b-m14386rqwi] {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.notes-content[b-m14386rqwi] {
    font-size: 0.9rem;
    color: var(--text-primary);
    line-height: 1.4;
    white-space: pre-wrap;
    word-wrap: break-word;
}

/* Alternative Exercise Display in History */
.alternatives-container[b-m14386rqwi] {
    margin-top: 1rem;
}

.alternative-row-wrapper[b-m14386rqwi] {
    padding-left: 1rem;
    margin-top: 0.75rem;
}

.alternative-row[b-m14386rqwi] {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.alternative-row-left[b-m14386rqwi] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.alternative-icon[b-m14386rqwi] {
    color: var(--text-secondary);
    font-size: 1rem;
}

.alternative-exercise-name[b-m14386rqwi] {
    cursor: pointer;
    color: var(--accent-primary);
    text-decoration: none;
    transition: all 0.2s;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

@media (hover: hover) {
    .alternative-exercise-name:hover[b-m14386rqwi] {
        color: var(--accent-secondary);
        text-decoration: underline;
    }
}

/* Expand button */
.expand-btn[b-m14386rqwi] {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    min-height: 48px;
    border-radius: 6px;
    transition: all 0.2s;
}

@media (hover: hover) {
    .expand-btn:hover[b-m14386rqwi] {
        background: var(--hover-bg);
        color: var(--text-primary);
    }
}

/* QuickNote History Styling */
.quicknotes-section[b-m14386rqwi] {
    margin-bottom: 2rem;
}

.section-title[b-m14386rqwi] {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.quicknotes-list[b-m14386rqwi] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quicknote-card[b-m14386rqwi] {
    background: linear-gradient(135deg, rgba(255, 154, 86, 0.05) 0%, rgba(255, 195, 113, 0.05) 100%);
    border: 1px solid #ffc371;
    border-left: 4px solid #ff9a56;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.2s;
}

:global(body.dark-theme) .quicknote-card[b-m14386rqwi] {
    background: linear-gradient(135deg, rgba(179, 107, 46, 0.1) 0%, rgba(212, 148, 66, 0.1) 100%);
    border-color: rgba(212, 148, 66, 0.3);
    border-left-color: #b36b2e;
}

@media (hover: hover) {
    .quicknote-card:hover[b-m14386rqwi] {
        box-shadow: 0 4px 12px rgba(255, 154, 86, 0.2);
    }
}

@media (hover: hover) {
    :global(body.dark-theme) .quicknote-card:hover[b-m14386rqwi] {
        box-shadow: 0 4px 12px rgba(179, 107, 46, 0.3);
    }
}

.quicknote-abandoned[b-m14386rqwi] {
    opacity: 0.7;
    background: linear-gradient(135deg, rgba(128, 128, 128, 0.05) 0%, rgba(160, 160, 160, 0.05) 100%);
    border-color: #ccc;
    border-left-color: #999;
}

.quicknote-header[b-m14386rqwi] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.quicknote-header-actions[b-m14386rqwi] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quicknote-info h3[b-m14386rqwi] {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
    color: var(--text-primary);
}

.quicknote-icon-history[b-m14386rqwi] {
    color: #ff9a56;
    margin-right: 0.5rem;
}

:global(body.dark-theme) .quicknote-icon-history[b-m14386rqwi] {
    color: #d49442;
}

.quicknote-meta[b-m14386rqwi] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.quicknote-preview-history[b-m14386rqwi] {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.quicknote-content-display[b-m14386rqwi] {
    background: var(--card-bg);
    border: 1px solid #ffc371;
    border-radius: 8px;
    padding: 1rem;
    white-space: pre-wrap;
    word-wrap: break-word;
    line-height: 1.6;
    color: var(--text-primary);
}

:global(body.dark-theme) .quicknote-content-display[b-m14386rqwi] {
    border-color: rgba(255, 195, 113, 0.3);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .history-header[b-m14386rqwi] {
        gap: 0.75rem;
    }

    .sets-grid[b-m14386rqwi] {
        grid-template-columns: 1fr;
    }
}

/* Mobile-specific compact styles for workout history */
@media (max-width: 576px) {
    /* Compact container padding */
    .history-container[b-m14386rqwi] {
        padding: 0.75rem;
    }

    /* Compact header */
    .history-header[b-m14386rqwi] {
        margin-bottom: 1rem;
    }

    .history-header h1[b-m14386rqwi] {
        font-size: 1.5rem;
    }

    .btn-back[b-m14386rqwi] {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }

    /* Tighter session list */
    .sessions-list[b-m14386rqwi] {
        gap: 0.75rem;
    }

    /* Compact session cards */
    .session-card .session-header[b-m14386rqwi] {
        padding: 0.875rem;
        gap: 0.5rem;
    }

    .session-info[b-m14386rqwi] {
        min-width: 0;
        flex: 1;
    }

    .session-info h3[b-m14386rqwi] {
        font-size: 1rem;
        margin-bottom: 0.25rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .session-card .session-meta[b-m14386rqwi] {
        font-size: 0.75rem;
        overflow: hidden;
        flex-wrap: wrap;
    }

    .session-header-actions[b-m14386rqwi] {
        flex-shrink: 0;
        gap: 0.5rem;
    }

    .btn-continue[b-m14386rqwi] {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
        min-height: 48px;
    }

    /* Compact session details */
    .session-details[b-m14386rqwi] {
        padding: 0.75rem;
    }

    .exercises-summary[b-m14386rqwi] {
        gap: 0.75rem;
    }

    /* Compact exercise detail */
    .exercise-detail[b-m14386rqwi] {
        padding: 0.75rem;
    }

    .exercise-detail-header[b-m14386rqwi] {
        gap: 0.5rem;
        margin-bottom: 0.75rem;
    }

    .exercise-detail-image[b-m14386rqwi] {
        width: 36px;
        height: 36px;
    }

    .exercise-detail h4[b-m14386rqwi] {
        font-size: 0.95rem;
        min-width: 0;
        overflow: hidden;
    }

    .exercise-history-name[b-m14386rqwi] {
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        max-width: 100%;
    }

    .alternative-exercise-name[b-m14386rqwi] {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        max-width: 100%;
        font-size: 0.9rem;
    }

    .alternative-row-left[b-m14386rqwi] {
        min-width: 0;
        flex: 1;
    }

    /* Compact sets grid */
    .sets-grid[b-m14386rqwi] {
        gap: 0.5rem;
    }

    .set-item[b-m14386rqwi] {
        padding: 0.5rem;
        font-size: 0.85rem;
    }

    .set-label[b-m14386rqwi] {
        font-size: 0.8rem;
    }

    /* Compact exercise notes */
    .exercise-notes-history[b-m14386rqwi] {
        margin-top: 0.75rem;
        padding: 0.5rem;
    }

    .notes-header[b-m14386rqwi] {
        font-size: 0.8rem;
    }

    .notes-content[b-m14386rqwi] {
        font-size: 0.85rem;
    }

    /* Compact quick notes section */
    .quicknotes-section[b-m14386rqwi] {
        margin-bottom: 1.25rem;
    }

    .section-title[b-m14386rqwi] {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .quicknotes-list[b-m14386rqwi] {
        gap: 0.75rem;
    }

    .quicknote-card[b-m14386rqwi] {
        padding: 0.875rem;
        border-radius: 8px;
    }

    .quicknote-header[b-m14386rqwi] {
        margin-bottom: 0.75rem;
    }

    .quicknote-info h3[b-m14386rqwi] {
        font-size: 1rem;
        margin-bottom: 0.25rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .quicknote-meta[b-m14386rqwi] {
        font-size: 0.8rem;
        flex-wrap: wrap;
    }

    .quicknote-preview-history[b-m14386rqwi] {
        font-size: 0.875rem;
    }

    .quicknote-content-display[b-m14386rqwi] {
        padding: 0.75rem;
        font-size: 0.875rem;
    }

    /* Compact empty state */
    .empty-state[b-m14386rqwi] {
        padding: 2rem 1rem;
    }

    .empty-icon[b-m14386rqwi] {
        font-size: 3rem;
    }

    .empty-state h3[b-m14386rqwi] {
        font-size: 1.25rem;
    }

    /* Alternative exercise compact styling */
    .alternative-row-wrapper[b-m14386rqwi] {
        padding-left: 0.5rem;
    }

    /* Smaller expand button on mobile (38px instead of 48px) */
    .expand-btn[b-m14386rqwi] {
        min-width: 38px;
        min-height: 38px;
        padding: 0.375rem;
    }

    /* Compact continue button */
    .btn-continue[b-m14386rqwi] {
        padding: 0.375rem 0.625rem;
        font-size: 0.75rem;
        min-height: 38px;
    }

    .quicknote-info[b-m14386rqwi] {
        min-width: 0;
        flex: 1;
    }

    .quicknote-header-actions[b-m14386rqwi] {
        flex-shrink: 0;
    }
}
/* /Components/Shared/AchievementCard.razor.rz.scp.css */
/* Achievements */
.achievements-section[b-grreav39i6] {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
}

.achievements-section h4[b-grreav39i6] {
    margin: 0 0 20px 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.achievements-list[b-grreav39i6] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.achievement-item[b-grreav39i6] {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 10px;
    background-color: var(--hover-bg);
    transition: all 0.3s ease;
}

@media (hover: hover) {
    .achievement-item:hover[b-grreav39i6] {
        transform: translateX(5px);
        background-color: var(--border-color);
    }
}

.achievement-icon[b-grreav39i6] {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.achievement-milestone .achievement-icon[b-grreav39i6] {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    color: white;
}

.achievement-personalrecord .achievement-icon[b-grreav39i6] {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: white;
}

.achievement-streak .achievement-icon[b-grreav39i6] {
    background: linear-gradient(135deg, #fa709a, #fee140);
    color: white;
}

.achievement-volume .achievement-icon[b-grreav39i6] {
    background: linear-gradient(135deg, #30cfd0, #330867);
    color: white;
}

.achievement-content[b-grreav39i6] {
    flex: 1;
}

.achievement-title[b-grreav39i6] {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.achievement-description[b-grreav39i6] {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.achievement-date[b-grreav39i6] {
    font-size: 12px;
    color: var(--text-muted);
}
/* /Components/Shared/AddExerciseSection.razor.rz.scp.css */
/* Search and Filters */
.search-filter-row[b-0fkvv1lo31] {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.exercise-search-bar[b-0fkvv1lo31] {
    position: relative;
    flex: 1;
    min-width: 300px;
    display: flex;
    align-items: center;
}

.exercise-search-bar .bi-search[b-0fkvv1lo31] {
    position: absolute;
    left: 1rem;
    font-size: 1.1rem;
    color: var(--text-muted);
    pointer-events: none;
}

.exercise-search-bar input[b-0fkvv1lo31] {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    background: var(--input-bg);
    color: var(--text-primary);
    transition: all 0.2s;
}

.exercise-search-bar input:focus[b-0fkvv1lo31] {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 4px rgba(124, 105, 255, 0.18);
}

.btn-clear-search[b-0fkvv1lo31] {
    position: absolute;
    right: 0.5rem;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.5rem;
    font-size: 1.25rem;
    border-radius: 6px;
    transition: all 0.2s;
}

@media (hover: hover) {
    .btn-clear-search:hover[b-0fkvv1lo31] {
        background: var(--hover-bg);
        color: var(--text-primary);
    }
}

.filter-controls[b-0fkvv1lo31] {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.filter-select[b-0fkvv1lo31] {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    background: var(--input-bg);
    color: var(--text-primary);
    cursor: pointer;
    transition: border-color 0.2s;
    min-width: 200px;
}

.filter-select:focus[b-0fkvv1lo31] {
    outline: none;
    border-color: var(--accent-primary);
}

/* Responsive */
@media (max-width: 768px) {
    .search-filter-row[b-0fkvv1lo31] {
        flex-direction: column;
    }

    .exercise-search-bar[b-0fkvv1lo31] {
        min-width: 100%;
    }

    .filter-controls[b-0fkvv1lo31] {
        flex-direction: column;
        width: 100%;
    }

    .filter-select[b-0fkvv1lo31] {
        width: 100%;
    }
}
/* /Components/Shared/ExerciseFinderByMuscle.razor.rz.scp.css */
/* Wrapper */
.exercise-finder-by-muscle[b-5ubv1zs4ei] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Search and Filters */
.search-filter-row[b-5ubv1zs4ei] {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.exercise-search-bar[b-5ubv1zs4ei] {
    position: relative;
    flex: 1;
    min-width: 300px;
    display: flex;
    align-items: center;
}

.exercise-search-bar .bi-search[b-5ubv1zs4ei] {
    position: absolute;
    left: 1rem;
    font-size: 1.1rem;
    color: var(--text-muted);
    pointer-events: none;
}

.exercise-search-bar input[b-5ubv1zs4ei] {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    background: var(--input-bg);
    color: var(--text-primary);
    transition: all 0.2s;
}

.exercise-search-bar input:focus[b-5ubv1zs4ei] {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 4px rgba(124, 105, 255, 0.18);
}

.btn-clear-search[b-5ubv1zs4ei] {
    position: absolute;
    right: 0.5rem;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.5rem;
    font-size: 1.25rem;
    border-radius: 6px;
    transition: all 0.2s;
}

@media (hover: hover) {
    .btn-clear-search:hover[b-5ubv1zs4ei] {
        background: var(--hover-bg);
        color: var(--text-primary);
    }
}

.filter-controls[b-5ubv1zs4ei] {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-clear-filters[b-5ubv1zs4ei] {
    padding: 1rem 1.5rem;
    background: var(--hover-bg);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

@media (hover: hover) {
    .btn-clear-filters:hover[b-5ubv1zs4ei] {
        background: var(--border-color);
        color: var(--text-primary);
    }
}

/* Exercise Grid */
.exercises-grid-container[b-5ubv1zs4ei] {
    max-height: 500px;
    overflow-y: auto;
    margin-bottom: 2rem;
}

.exercises-grid[b-5ubv1zs4ei] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

/* Exercise Cards */
.exercise-card[b-5ubv1zs4ei] {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

@media (hover: hover) {
    .exercise-card:hover[b-5ubv1zs4ei] {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        border-color: var(--accent-primary);
    }
}

.exercise-card-image[b-5ubv1zs4ei] {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.exercise-card-image img[b-5ubv1zs4ei] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

@media (hover: hover) {
    .exercise-card:hover .exercise-card-image img[b-5ubv1zs4ei] {
        transform: scale(1.05);
    }
}

.exercise-card-header[b-5ubv1zs4ei] {
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 1.5rem;
}

.exercise-card-title[b-5ubv1zs4ei] {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    color: var(--accent-primary);
    line-height: 1.4;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    width: fit-content;
    transition: all 0.2s;
}

@media (hover: hover) {
    .exercise-card-title:hover[b-5ubv1zs4ei] {
        color: var(--accent-secondary);
        text-decoration: underline;
    }
}

.exercise-card-body[b-5ubv1zs4ei] {
    flex: 1;
    padding: 1rem 1.5rem 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.6rem;
}

.exercise-muscles[b-5ubv1zs4ei] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.exercise-muscles .bi[b-5ubv1zs4ei] {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 0;
}

.muscle-tags[b-5ubv1zs4ei] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.muscle-tag[b-5ubv1zs4ei] {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.375rem 0.75rem;
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid var(--border-color);
}

.muscle-tag .bi[b-5ubv1zs4ei] {
    font-size: 1rem;
    color: var(--accent-primary);
}

.exercise-card-footer[b-5ubv1zs4ei] {
    padding: 1rem 1.5rem 1.5rem 1.5rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 0.5rem;
}

.btn-add-to-workout[b-5ubv1zs4ei] {
    flex: 1;
    padding: 0.65rem 0.75rem;
    background: var(--card-bg);
    color: var(--text-primary);
    border: 2px solid var(--accent-primary);
    border-radius: 10px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

@media (hover: hover) {
    .btn-add-to-workout:hover[b-5ubv1zs4ei] {
        background: var(--accent-primary);
        color: var(--accent-contrast);
        transform: scale(1.02);
    }
}

/* Empty State */
.exercises-empty[b-5ubv1zs4ei] {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--card-bg);
    border: 2px dashed var(--border-color);
    border-radius: 16px;
}

.exercises-empty .bi[b-5ubv1zs4ei] {
    font-size: 4rem;
    color: var(--text-muted);
    opacity: 0.5;
    display: block;
    margin-bottom: 1rem;
}

.exercises-empty h2[b-5ubv1zs4ei] {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: var(--text-primary);
}

.exercises-empty p[b-5ubv1zs4ei] {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 0 0 1.5rem 0;
}

.btn-clear-filters-large[b-5ubv1zs4ei] {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: var(--accent-contrast);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.2s;
}

@media (hover: hover) {
    .btn-clear-filters-large:hover[b-5ubv1zs4ei] {
        background: linear-gradient(135deg, var(--accent-secondary), var(--accent-primary));
        transform: scale(1.05);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .search-filter-row[b-5ubv1zs4ei] {
        flex-direction: column;
    }

    .exercise-search-bar[b-5ubv1zs4ei] {
        min-width: 100%;
    }

    .filter-controls[b-5ubv1zs4ei] {
        flex-direction: column;
        width: 100%;
    }

    .btn-clear-filters[b-5ubv1zs4ei] {
        width: 100%;
        justify-content: center;
    }

    .exercises-grid[b-5ubv1zs4ei] {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .exercises-grid[b-5ubv1zs4ei] {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}
/* /Components/Shared/ExerciseLeaderboard.razor.rz.scp.css */
/* Exercise Leaderboard */
.exercise-leaderboard h4[b-hzfhtgqy1k] {
    margin: 0 0 20px 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.exercise-list[b-hzfhtgqy1k] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.exercise-item[b-hzfhtgqy1k] {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background-color: var(--hover-bg);
    border-radius: 8px;
    transition: all 0.2s ease;
}

@media (hover: hover) {
    .exercise-item:hover[b-hzfhtgqy1k] {
        background-color: var(--border-color);
    }
}

.exercise-rank[b-hzfhtgqy1k] {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.exercise-info[b-hzfhtgqy1k] {
    flex: 1;
}

.exercise-name[b-hzfhtgqy1k] {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.exercise-stats[b-hzfhtgqy1k] {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.exercise-pr[b-hzfhtgqy1k] {
    font-size: 12px;
    color: var(--accent-primary);
    font-weight: 600;
}
/* /Components/Shared/MuscleSelectionDiagram.razor.rz.scp.css */
.muscle-target-panel[b-35zrs65vjd] {
    margin-bottom: 2.5rem;
    padding: 2.4rem 2.6rem 2.6rem;
    border-radius: 2rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

.muscle-target-header h2[b-35zrs65vjd] {
    margin: 0 0 0.35rem;
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.muscle-target-header p[b-35zrs65vjd] {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.96rem;
}

.muscle-target-content[b-35zrs65vjd] {
    display: flex;
    flex-wrap: wrap;
    gap: 2.4rem;
    margin-top: 2.4rem;
    align-items: flex-start;
    justify-content: center;
}

.muscle-target-figures[b-35zrs65vjd] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.8rem;
    min-width: 320px;
    justify-items: center;
}

.muscle-diagram[b-35zrs65vjd] {
    width: 260px;
    max-width: 360px;
    height: auto;
    transition: transform 0.25s ease;
}

@media (hover: hover) {
    .muscle-diagram:hover[b-35zrs65vjd] {
        transform: scale(1.02);
    }
}

.muscle-diagram image[b-35zrs65vjd] {
}

body.dark-theme .muscle-diagram image[b-35zrs65vjd] {
}

.muscle-diagram.front .figure-glow[b-35zrs65vjd] {
    fill: url(#front-glow);
}

.muscle-diagram.back .figure-glow[b-35zrs65vjd] {
    fill: url(#back-glow);
}

.muscle-segment path[b-35zrs65vjd] {
    fill: rgba(124, 105, 255, 0.25);
    stroke: rgba(124, 105, 255, 0.4);
    stroke-width: 2;
    transition: fill 0.18s ease, stroke 0.18s ease, transform 0.18s ease;
    pointer-events: all;
}

@media (hover: hover) {
    .muscle-segment:hover path[b-35zrs65vjd] {
        fill: rgba(124, 105, 255, 0.45);
        stroke: rgba(124, 105, 255, 0.7);
        stroke-width: 3;
    }
}

.muscle-segment.is-active path[b-35zrs65vjd] {
    fill: rgba(124, 105, 255, 0.65);
    stroke: var(--accent-primary);
    stroke-width: 3;
}

.muscle-segment.is-disabled path[b-35zrs65vjd] {
    fill: rgba(45, 52, 74, 0.15);
    stroke: rgba(45, 52, 74, 0.2);
    cursor: default;
    mix-blend-mode: normal;
}

/* Dark theme adjustments for muscle segments */
body.dark-theme .muscle-segment path[b-35zrs65vjd] {
    fill: rgba(124, 105, 255, 0.3);
    stroke: rgba(124, 105, 255, 0.5);
}

@media (hover: hover) {
    body.dark-theme .muscle-segment:hover path[b-35zrs65vjd] {
        fill: rgba(124, 105, 255, 0.5);
        stroke: rgba(124, 105, 255, 0.8);
    }
}

body.dark-theme .muscle-segment.is-active path[b-35zrs65vjd] {
    fill: rgba(124, 105, 255, 0.7);
}

body.dark-theme .muscle-segment.is-disabled path[b-35zrs65vjd] {
    fill: rgba(45, 52, 74, 0.22);
    stroke: rgba(45, 52, 74, 0.22);
}

.muscle-target-actions[b-35zrs65vjd] {
    flex: 1 1 420px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.1rem;
    align-content: flex-start;
}

.muscle-target-button[b-35zrs65vjd] {
    appearance: none;
    border-radius: 1.1rem;
    padding: 1.05rem 1.4rem;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-secondary);
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: all 0.18s ease;
}

@media (hover: hover) {
    .muscle-target-button:hover:not(:disabled)[b-35zrs65vjd] {
        color: var(--text-primary);
        background: var(--hover-bg);
        border-color: var(--accent-primary);
    }
}

.muscle-target-button.is-active[b-35zrs65vjd] {
    color: var(--accent-contrast);
    background: var(--accent-gradient);
    border-color: transparent;
    box-shadow: var(--accent-glow);
    transform: translateY(-1px);
}

@media (hover: hover) {
    .muscle-target-button.is-active:hover[b-35zrs65vjd] {
        color: var(--accent-contrast);
        background: var(--accent-gradient);
        border-color: transparent;
        box-shadow: var(--accent-glow);
    }
}

.muscle-target-button:disabled[b-35zrs65vjd] {
    opacity: 0.45;
    cursor: not-allowed;
}

@media (max-width: 767px) {
    .muscle-target-panel[b-35zrs65vjd] {
        padding: 1.5rem;
    }

    .muscle-target-content[b-35zrs65vjd] {
        flex-direction: column;
        gap: 1.5rem;
    }

    .muscle-target-figures[b-35zrs65vjd] {
        justify-content: center;
        grid-template-columns: 1fr;
        min-width: auto;
    }

    .muscle-target-actions[b-35zrs65vjd] {
        width: 100%;
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }

    .muscle-target-button[b-35zrs65vjd] {
        min-height: 48px;
        padding: 0.875rem 1rem;
    }
}
/* /Components/Shared/ProfileCompletionBanner.razor.rz.scp.css */
.profile-banner[b-6uklpslqay] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, rgba(124, 105, 255, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(124, 105, 255, 0.25);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    animation: slideDown-b-6uklpslqay 0.3s ease-out;
}

:global(body.dark-theme) .profile-banner[b-6uklpslqay] {
    background: linear-gradient(135deg, rgba(143, 124, 255, 0.12), rgba(139, 92, 246, 0.1));
    border-color: rgba(143, 124, 255, 0.3);
}

.banner-content[b-6uklpslqay] {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    flex: 1;
    min-width: 0;
}

.banner-icon[b-6uklpslqay] {
    font-size: 1.5rem;
    color: var(--accent-primary);
    flex-shrink: 0;
}

.banner-text[b-6uklpslqay] {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    min-width: 0;
}

.banner-text strong[b-6uklpslqay] {
    font-size: 0.938rem;
    font-weight: 600;
    color: var(--text-primary);
}

.banner-subtitle[b-6uklpslqay] {
    font-size: 0.813rem;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.banner-actions[b-6uklpslqay] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.btn-complete[b-6uklpslqay] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: var(--accent-primary);
    border: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

@media (hover: hover) {
    .btn-complete:hover[b-6uklpslqay] {
        background: var(--accent-hover);
        transform: translateY(-1px);
    }
}

.btn-complete .bi[b-6uklpslqay] {
    font-size: 1rem;
}

.btn-dismiss[b-6uklpslqay] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: transparent;
    border: 1px solid rgba(124, 105, 255, 0.2);
    border-radius: 8px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s;
}

@media (hover: hover) {
    .btn-dismiss:hover[b-6uklpslqay] {
        background: var(--danger-bg);
        border-color: var(--danger-border);
        color: var(--danger);
    }
}

.btn-dismiss .bi[b-6uklpslqay] {
    font-size: 1rem;
}

@keyframes slideDown-b-6uklpslqay {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 767px) {
    .profile-banner[b-6uklpslqay] {
        flex-direction: column;
        align-items: stretch;
        gap: 0.875rem;
        padding: 1rem;
    }

    .banner-content[b-6uklpslqay] {
        gap: 0.75rem;
    }

    .banner-subtitle[b-6uklpslqay] {
        white-space: normal;
    }

    .banner-actions[b-6uklpslqay] {
        justify-content: space-between;
    }

    .btn-complete[b-6uklpslqay] {
        flex: 1;
        justify-content: center;
        min-height: 48px;
    }

    .btn-dismiss[b-6uklpslqay] {
        min-width: 48px;
        min-height: 48px;
        width: 48px;
        height: 48px;
    }
}
/* /Components/Shared/StatCard.razor.rz.scp.css */
/* Stat Card */
.stat-card[b-1u414qcm02] {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

@media (hover: hover) {
    .stat-card:hover[b-1u414qcm02] {
        transform: translateY(-4px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
}

.stat-icon[b-1u414qcm02] {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--accent-contrast);
    box-shadow: var(--accent-glow);
}

.stat-content[b-1u414qcm02] {
    flex: 1;
}

.stat-value[b-1u414qcm02] {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.stat-label[b-1u414qcm02] {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.stat-subtext[b-1u414qcm02] {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}
