/* /Components/LoadingOverlay.razor.rz.scp.css */
.loading-overlay[b-w227zwq9jx] {
    position: fixed;
    inset: 0;
    z-index: 1060;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(2px);
    color: var(--theme-color-foreground);
}
/* /Components/Pomodoro.razor.rz.scp.css */
.phase-btn[b-i5om68e9bu] {
    min-width: 8rem;
    padding: var(--space-3) var(--space-5);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-pill);
    background: var(--theme-color-button-bg);
    backdrop-filter: blur(8px) saturate(140%);
    -webkit-backdrop-filter: blur(8px) saturate(140%);
    box-shadow: var(--shadow-low);
    color: var(--theme-color-foreground);
    font-weight: 600;
    font-size: 0.92rem;
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;

    &:hover {
        background: var(--theme-color-button-hover-bg);
        color: var(--theme-color-foreground);
        transform: translateY(-1px);
        box-shadow: var(--shadow-low), 0 0 18px color-mix(in srgb, var(--theme-color-accent) 45%, transparent);
    }

    &.active[b-i5om68e9bu] {
        background: var(--theme-color-button-active-bg);
        border-color: color-mix(in srgb, var(--theme-color-accent) 55%, transparent);
        color: var(--theme-color-foreground);
        box-shadow: var(--shadow-low), 0 0 16px color-mix(in srgb, var(--theme-color-accent) 40%, transparent);
    }
}
/* /Components/SettingsDialog.razor.rz.scp.css */
.settings-dialog[b-fcf9x0vycj] {
    width: min(36rem, 90vw);
    height: min(24rem, 80vh);
    background: var(--theme-color-dialog-bg);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-high);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    --bs-link-color: var(--theme-color-link);
    --bs-link-hover-color: var(--theme-color-link);
}

.settings-body[b-fcf9x0vycj] {
    min-height: 0;
}
/* /Components/ThemeCredits.razor.rz.scp.css */
.theme-credits[b-tf6qlny5i7] {
    margin-top: 0.75rem;
    color: var(--theme-color-foreground);

    & a {
        color: var(--theme-color-foreground);
    }
}
/* /Components/ThemeSelector.razor.rz.scp.css */
.theme-loading[b-ljkcb7f5cd] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--theme-color-foreground);
    opacity: 0.85;
}

.theme-swatch[b-ljkcb7f5cd] {
    width: 6rem;
    border: none;
    border-radius: var(--radius-md);
    background: transparent;
    color: var(--theme-color-foreground);
    padding: 0;
    overflow: hidden;
    outline-offset: 2px;
    transition: transform 0.15s ease, opacity 0.15s ease, box-shadow 0.15s ease;

    &:hover {
        transform: scale(1.05);
        box-shadow: 0 0 14px rgba(255, 255, 255, 0.3);
        box-shadow: 0 0 16px color-mix(in srgb, var(--theme-color-accent) 45%, transparent);
    }

    &:disabled[b-ljkcb7f5cd] {
        opacity: 0.5;
        pointer-events: none;
    }

    &.active[b-ljkcb7f5cd] {
        outline: 2px solid var(--theme-color-accent);
    }

    & .theme-swatch-label[b-ljkcb7f5cd] {
        display: block;
        font-size: 0.85rem;
        padding: 0.25rem 0;
    }
}

.theme-swatch-thumb[b-ljkcb7f5cd] {
    display: block;
    height: 4rem;
    position: relative;
    background: rgba(255, 255, 255, 0.08);

    & img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        opacity: 0;
        transition: opacity 0.2s ease;

        &.loaded {
            opacity: 1;
        }
    }

    & .spinner-border[b-ljkcb7f5cd] {
        position: absolute;
        top: 50%;
        left: 50%;
        translate: -50% -50%;
    }
}
/* /Components/Timer.razor.rz.scp.css */
.timer-container[b-lexxi5e4aj] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    --shadow-idle: 0 0 10px rgba(0, 0, 0, 0.55), 0 0 30px color-mix(in srgb, var(--theme-color-accent) 42%, transparent);
    --shadow-active: 0 0 12px rgba(0, 0, 0, 0.6), 0 0 40px color-mix(in srgb, var(--theme-color-accent) 62%, transparent);
}

.timer-ring-wrap[b-lexxi5e4aj] {
    position: relative;
    display: grid;
    place-items: center;
    --timer-ring-size: min(48vh, 48vw);
}

.timer-ring[b-lexxi5e4aj] {
    width: var(--timer-ring-size);
    height: var(--timer-ring-size);
    transform: rotate(-90deg);
}

.timer-ring-track[b-lexxi5e4aj] {
    fill: none;
    stroke: var(--theme-color-overlay);
    stroke-width: 3;
}

.timer-ring-progress[b-lexxi5e4aj] {
    fill: none;
    stroke: url(#timerRingGradient);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 320.4;
    transition: stroke-dashoffset 0.3s linear;
}

.timer[b-lexxi5e4aj] {
    position: absolute;
    font-family: var(--theme-font-family, var(--font-mono));
    font-size: calc(var(--timer-ring-size) * 0.24);
    font-variant-numeric: tabular-nums;
    color: var(--theme-color-foreground);
    text-shadow: var(--shadow-idle);
    transition: text-shadow 0.6s ease-in-out;
    user-select: none;
    -webkit-user-select: none;
}

.timer.running[b-lexxi5e4aj] {
    text-shadow: var(--shadow-active);
}

.timer-controls[b-lexxi5e4aj] {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.timer-button[b-lexxi5e4aj] {
    display: grid;
    place-items: center;
    width: 60px;
    height: 60px;
    font-size: 1.75rem;
    line-height: 1;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: var(--theme-color-button-bg);
    backdrop-filter: blur(8px) saturate(140%);
    -webkit-backdrop-filter: blur(8px) saturate(140%);
    box-shadow: var(--shadow-low);
    color: var(--theme-color-foreground);
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.timer-button:hover[b-lexxi5e4aj] {
    transform: translateY(-2px);
}

.timer-button:not(.play):hover[b-lexxi5e4aj],
.timer-button.play:not(.running):hover[b-lexxi5e4aj] {
    background: var(--theme-color-button-hover-bg);
    box-shadow: var(--shadow-low), 0 0 16px color-mix(in srgb, var(--theme-color-accent) 40%, transparent);
}

.timer-button.play.running[b-lexxi5e4aj] {
    background: var(--theme-color-button-active-bg);
    border-color: color-mix(in srgb, var(--theme-color-accent) 55%, transparent);
    box-shadow: var(--shadow-low), 0 0 16px color-mix(in srgb, var(--theme-color-accent) 40%, transparent);
}

.timer-button.play.running:hover[b-lexxi5e4aj] {
    box-shadow: var(--shadow-low), 0 0 22px color-mix(in srgb, var(--theme-color-accent) 55%, transparent);
}

@media (prefers-reduced-motion: reduce) {
    .timer[b-lexxi5e4aj],
    .timer-button[b-lexxi5e4aj],
    .timer-ring-progress[b-lexxi5e4aj] {
        transition: none;
    }
}
/* /Layout/MainLayout.razor.rz.scp.css */
/* /Pages/Home.razor.rz.scp.css */
.main-content[b-1wp51zjzhz] {
    position: relative;
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    background-color: var(--theme-color-background, #1a1a1a);
    background-image: var(--theme-bg-image, none);
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    font-family: var(--font-body);
}

.main-content[b-1wp51zjzhz]::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 25%, var(--theme-color-overlay, rgba(0, 0, 0, 0.15)) 90%);
}

.main-content[b-1wp51zjzhz] >  * {
    position: relative;
    z-index: 1;
}

.corner-controls[b-1wp51zjzhz] {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1;
}

.icon-trigger[b-1wp51zjzhz] {
    font-size: 1.75rem;
    color: var(--theme-color-foreground, white);
    cursor: pointer;
    line-height: 1;
    transition: transform 0.15s ease;
}

.icon-trigger:hover[b-1wp51zjzhz] {
    transform: translateY(-2px);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.35));
}
