/* _content/Negotium.Blazor/Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-br6kt7r116] {
    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-br6kt7r116] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/Negotium.Blazor/Components/Pages/Calendar/CalendarView.razor.rz.scp.css */
.calendar-grid[b-2nqkf3u6k6] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}

.calendar-header[b-2nqkf3u6k6] {
    text-align: center;
    padding: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    background: var(--mud-palette-background);
}

.calendar-cell[b-2nqkf3u6k6] {
    min-height: 90px;
    border: 1px solid var(--mud-palette-lines-default);
    padding: 4px;
    cursor: pointer;
}

.calendar-cell:hover[b-2nqkf3u6k6] {
    background: var(--mud-palette-background);
}

.calendar-cell-other[b-2nqkf3u6k6] {
    opacity: 0.4;
}

.calendar-cell-today[b-2nqkf3u6k6] {
    background: color-mix(in srgb, var(--mud-palette-primary) 8%, var(--mud-palette-surface));
    border-top: 3px solid var(--mud-palette-primary);
}

.calendar-day-number[b-2nqkf3u6k6] {
    font-weight: 400;
    color: var(--mud-palette-text-secondary);
}

.calendar-day-today[b-2nqkf3u6k6] {
    font-weight: 700;
    color: white;
    background: var(--mud-palette-primary);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
}

.calendar-event[b-2nqkf3u6k6] {
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 4px;
    margin-top: 2px;
    cursor: pointer;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.calendar-event:hover[b-2nqkf3u6k6] {
    opacity: 0.85;
}

.calendar-legend-dot[b-2nqkf3u6k6] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.calendar-more-link[b-2nqkf3u6k6] {
    cursor: pointer;
}

@media (max-width: 640px) {
    .calendar-cell[b-2nqkf3u6k6] {
        min-height: 60px;
    }

    .calendar-event[b-2nqkf3u6k6] {
        font-size: 0.65rem;
        padding: 1px 3px;
    }
}
