.shifts-page {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    background: #f7f8fc;
}

.shifts-card {
    border: 1px solid #e5e7eb;
    background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%);
    border-radius: 0.75rem;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.shifts-toolbar {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
}

.shifts-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
}

.shift-color-swatch {
    display: inline-flex;
    width: 24px;
    height: 12px;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
}

.shift-color-cell {
    width: 100%;
    height: 100%;
    min-height: 1.5rem;
    border-radius: 0.4rem;
    border: 1px solid #e5e7eb;
}

@media (min-width: 720px) {
    .shifts-toolbar {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
    }
}
