/* /Components/AddTaskDialog.razor.rz.scp.css */
.task-fab[b-31t75xcxj2] {
    position: fixed;
    bottom: 2.5rem;
    right: 2.5rem;
    width: 4rem;
    height: 4rem;
    border-radius: 9999px;
    border: none;
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    font-size: 2rem;
    line-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    z-index: 40;
}

.task-fab.is-hidden[b-31t75xcxj2] {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.task-fab span[b-31t75xcxj2] {
    display: block;
    transform: translateY(-0.05em);
}

.task-fab:hover:not(.is-hidden)[b-31t75xcxj2] {
    transform: scale(1.05);
    box-shadow: 0 30px 60px -20px hsl(var(--primary) / 0.6);
}

.task-dialog__backdrop[b-31t75xcxj2] {
    position: fixed;
    inset: 0;
    background: rgba(12, 10, 24, 0.55);
    backdrop-filter: blur(14px);
    display: grid;
    place-items: center;
    padding: 2.5rem;
    z-index: 1000;
    animation: fade-in-b-31t75xcxj2 0.3s ease;
}

.task-dialog[b-31t75xcxj2] {
    width: min(500px, 100%);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    background: hsl(var(--card));
    color: hsl(var(--card-foreground));
    border-radius: 1.75rem;
    padding: 0;
    box-shadow: 0 50px 120px -40px rgba(20, 15, 45, 0.45);
    border: 1px solid hsl(var(--border) / 0.6);
    animation: slide-up-b-31t75xcxj2 0.35s ease;
    overflow: hidden;
    position: relative;
}

.task-dialog__close[b-31t75xcxj2] {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: 1px solid hsl(var(--border));
    background: hsl(var(--background));
    color: hsl(var(--muted-foreground));
    font-size: 1.25rem;
    line-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
}

.task-dialog__close:hover[b-31t75xcxj2] {
    background: hsl(var(--muted));
    border-color: hsl(var(--primary));
    color: hsl(var(--foreground));
    transform: scale(1.1);
}

.task-dialog__header[b-31t75xcxj2] {
    padding: 2rem 2.5rem 0;
    flex-shrink: 0;
}

.task-dialog__header h2[b-31t75xcxj2] {
    font-size: 1.75rem;
    margin-bottom: 0.4rem;
}

.task-dialog__header p[b-31t75xcxj2] {
    color: hsl(var(--muted-foreground));
    margin: 0;
    font-size: 0.95rem;
}

.task-dialog__content[b-31t75xcxj2] {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin: 1.5rem 0 0;
    padding: 0 2.5rem;
    overflow-y: auto;
    flex: 1;
    min-height: 0;
    /* Subtle scrollbar */
    scrollbar-width: thin;
    scrollbar-color: hsl(var(--primary) / 0.3) transparent;
}

.task-dialog__content[b-31t75xcxj2]::-webkit-scrollbar {
    width: 4px;
}

.task-dialog__content[b-31t75xcxj2]::-webkit-scrollbar-track {
    background: transparent;
}

.task-dialog__content[b-31t75xcxj2]::-webkit-scrollbar-thumb {
    background: hsl(var(--primary) / 0.3);
    border-radius: 2px;
}

.task-dialog__content[b-31t75xcxj2]::-webkit-scrollbar-thumb:hover {
    background: hsl(var(--primary) / 0.5);
}

.task-dialog__footer[b-31t75xcxj2] {
    padding: 0 2.5rem 2.5rem;
    flex-shrink: 0;
}

.form-field[b-31t75xcxj2] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-field label[b-31t75xcxj2] {
    font-weight: 600;
    font-size: 0.95rem;
}

.form-field .muted[b-31t75xcxj2] {
    color: hsl(var(--muted-foreground));
    font-weight: 400;
}

/* Note: Input styling is handled globally in app.css */

.char-counter[b-31t75xcxj2] {
    align-self: flex-end;
    font-size: 0.75rem;
    color: hsl(var(--muted-foreground));
}

.validation-message[b-31t75xcxj2] {
    color: hsl(var(--destructive));
    font-size: 0.85rem;
}

.priority-toggle[b-31t75xcxj2] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.6rem;
}

.priority-toggle__button[b-31t75xcxj2] {
    border-radius: 0.85rem;
    border: 1px solid hsl(var(--border));
    padding: 0.7rem 0.75rem;
    background: hsl(var(--background));
    color: hsl(var(--foreground));
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    cursor: pointer;
    transition: transform 0.2s ease, border 0.2s ease, background 0.2s ease;
}

.priority-toggle__button span[b-31t75xcxj2] {
    font-size: 1.1rem;
}

.priority-toggle__button:hover[b-31t75xcxj2] {
    transform: translateY(-2px);
}

.priority-toggle__button.is-selected[b-31t75xcxj2] {
    border-color: hsl(var(--primary));
    background: hsl(var(--primary) / 0.15);
    color: hsl(var(--primary));
}

.date-shortcuts[b-31t75xcxj2] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.6rem;
    margin-top: 0.5rem;
}

.date-shortcut-btn[b-31t75xcxj2] {
    border-radius: 0.85rem;
    border: 1px solid hsl(var(--border));
    padding: 0.65rem 0.75rem;
    background: hsl(var(--background));
    color: hsl(var(--foreground));
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: transform 0.2s ease, border 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.date-shortcut-btn:hover[b-31t75xcxj2] {
    transform: translateY(-2px);
    border-color: hsl(var(--primary));
    background: hsl(var(--primary) / 0.1);
    color: hsl(var(--primary));
}

.date-shortcut-btn:active[b-31t75xcxj2] {
    background: hsl(var(--primary) / 0.2);
}

.task-dialog__footer[b-31t75xcxj2] {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    padding-top: 1.5rem;
    margin-top: 1rem;
    border-top: 1px solid hsl(var(--border) / 0.3);
}

.btn[b-31t75xcxj2] {
    border-radius: 9999px;
    padding: 0.85rem 1.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.btn span[b-31t75xcxj2] {
    font-size: 1.25rem;
}

.btn-primary[b-31t75xcxj2] {
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover[b-31t75xcxj2] {
    filter: brightness(1.05);
}

.btn-outline[b-31t75xcxj2] {
    background: transparent;
    color: hsl(var(--foreground));
    border: 1px solid hsl(var(--border));
}

.btn-outline:hover[b-31t75xcxj2] {
    border-color: hsl(var(--primary));
}

@keyframes fade-in-b-31t75xcxj2 {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slide-up-b-31t75xcxj2 {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@media (max-width: 640px) {
    .task-fab[b-31t75xcxj2] {
        width: 3.25rem;
        height: 3.25rem;
        font-size: 1.5rem;
        right: 1rem;
        bottom: 1rem;
    }

    .task-dialog__backdrop[b-31t75xcxj2] {
        padding: 1rem;
        align-items: flex-start;
    }

    .task-dialog[b-31t75xcxj2] {
        width: 100%;
        max-width: calc(100vw - 2rem);
        max-height: calc(100vh - 2rem);
        border-radius: 2.5rem;
        margin-top: 1rem;
    }

    .task-dialog__close[b-31t75xcxj2] {
        top: 1rem;
        right: 1rem;
        width: 1.75rem;
        height: 1.75rem;
        font-size: 1.1rem;
    }

    .task-dialog__header[b-31t75xcxj2] {
        padding: 1.5rem 1.25rem 0;
    }

    .task-dialog__header h2[b-31t75xcxj2] {
        font-size: 1.4rem;
        margin-bottom: 0.25rem;
    }

    .task-dialog__header p[b-31t75xcxj2] {
        font-size: 0.875rem;
    }

    .task-dialog__content[b-31t75xcxj2] {
        padding: 0 1.25rem;
        gap: 1rem;
        margin-top: 1.25rem;
    }

    .task-dialog__footer[b-31t75xcxj2] {
        padding: 1rem 1.25rem 1.25rem;
        flex-direction: column-reverse;
        gap: 0.65rem;
        margin-top: 0.25rem;
        padding-top: 1rem;
    }

    .form-field[b-31t75xcxj2] {
        gap: 0.4rem;
    }

    .form-field label[b-31t75xcxj2] {
        font-size: 0.875rem;
    }

    .form-input[b-31t75xcxj2],
    .form-input textarea[b-31t75xcxj2] {
        font-size: 0.95rem;
        padding: 0.65rem 0.9rem;
    }

    /* Compact priority buttons on mobile */
    .priority-toggle[b-31t75xcxj2] {
        display: flex;
        gap: 0.4rem;
    }

    .priority-toggle__button[b-31t75xcxj2] {
        flex: 1;
        padding: 0.55rem 0.4rem;
        font-size: 0.75rem;
        flex-direction: row;
        justify-content: center;
        gap: 0.35rem;
        border-radius: 0.65rem;
    }

    .priority-toggle__button span[b-31t75xcxj2] {
        font-size: 0.95rem;
    }

    /* Compact date shortcuts on mobile */
    .date-shortcuts[b-31t75xcxj2] {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.5rem;
        margin-top: 0.4rem;
    }

    .date-shortcut-btn[b-31t75xcxj2] {
        padding: 0.55rem 0.4rem;
        font-size: 0.75rem;
        border-radius: 0.65rem;
    }

    .btn[b-31t75xcxj2] {
        justify-content: center;
        width: 100%;
        padding: 0.7rem 1.25rem;
        font-size: 0.9rem;
    }
}
/* /Components/Logo.razor.rz.scp.css */
.logo[b-cpn692e45d] {
    display: inline-block;
    width: 100%;
    height: 100%;
}

.logo__gradient-start[b-cpn692e45d] {
    stop-color: hsl(var(--primary));
    stop-opacity: 1;
}

.logo__gradient-end[b-cpn692e45d] {
    stop-color: hsl(280 60% 65%);
    stop-opacity: 1;
}

.dark .logo__gradient-start[b-cpn692e45d] {
    stop-color: hsl(var(--primary));
}

.dark .logo__gradient-end[b-cpn692e45d] {
    stop-color: hsl(280 70% 60%);
}

.logo__check[b-cpn692e45d] {
    animation: draw-check-b-cpn692e45d 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
}

@keyframes draw-check-b-cpn692e45d {
    to {
        stroke-dashoffset: 0;
    }
}

/* Size variants */
.logo--sm[b-cpn692e45d] {
    width: 2rem;
    height: 2rem;
}

.logo--md[b-cpn692e45d] {
    width: 3rem;
    height: 3rem;
}

.logo--lg[b-cpn692e45d] {
    width: 4rem;
    height: 4rem;
}

.logo--xl[b-cpn692e45d] {
    width: 6rem;
    height: 6rem;
}

/* Animation states */
.logo--animate-float[b-cpn692e45d] {
    animation: float-b-cpn692e45d 3s ease-in-out infinite;
}

@keyframes float-b-cpn692e45d {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}
/* /Components/PriorityBadge.razor.rz.scp.css */
.priority-badge[b-k0oi7wvcty] {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    border: 1px solid hsl(var(--border) / 0.6);
    background-color: hsl(var(--card));
    color: hsl(var(--card-foreground));
    transition: transform 0.3s ease;
}

.priority-badge__icon[b-k0oi7wvcty] {
    font-size: 0.95rem;
}

.priority-badge--low[b-k0oi7wvcty] {
    background: hsl(var(--muted) / 0.8);
    color: hsl(var(--muted-foreground));
}

.priority-badge--standard[b-k0oi7wvcty] {
    background: hsl(var(--calm) / 0.2);
    color: hsl(var(--calm-foreground));
    border-color: hsl(var(--calm) / 0.3);
}

.priority-badge--high[b-k0oi7wvcty] {
    background: hsl(var(--destructive) / 0.2);
    color: hsl(var(--destructive-foreground));
    border-color: hsl(var(--destructive) / 0.3);
}
/* /Components/ThemeToggle.razor.rz.scp.css */
.theme-toggle[b-nq4y0hz176] {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    width: 3rem;
    height: 3rem;
    border: 1px solid hsl(var(--border) / 0.5);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: rgba(120, 90, 255, 0.18);
    background: color-mix(in srgb, hsl(var(--primary)) 20%, transparent);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 40px -12px hsl(var(--primary) / 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    color: hsl(var(--foreground));
    z-index: 40;
}

.theme-toggle.is-hidden[b-nq4y0hz176] {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.theme-toggle:hover:not(.is-hidden)[b-nq4y0hz176] {
    transform: scale(1.05);
    box-shadow: 0 24px 50px -16px hsl(var(--primary) / 0.5);
}

.theme-toggle__icon[b-nq4y0hz176] {
    font-size: 1.4rem;
    line-height: 0;
    display: block;
    transform: translateY(-0.05em);
}

@media (max-width: 640px) {
    .theme-toggle[b-nq4y0hz176] {
        /* Hide on mobile - use system theme */
        display: none;
    }
}
/* /Layout/MainLayout.razor.rz.scp.css */
:host[b-df1nl2ex0q] {
    display: block;
}

.app-shell[b-df1nl2ex0q] {
    min-height: 100vh;
    background: hsl(var(--background));
    color: hsl(var(--foreground));
    transition: background 0.6s ease, color 0.6s ease;
}
