/* ── Navbar ── */
.navbar {
    background-color: #1a1d23 !important;
}

/* ── Card hover effect ── */
.card {
    transition: box-shadow 0.2s;
}

.card:hover {
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
}

/* ── Table actions column ── */
.table .actions {
    white-space: nowrap;
}

/* ── JSON view styling ── */
.json-view {
    background-color: var(--bs-tertiary-bg);
    border: 1px solid var(--bs-border-color);
    border-radius: 0.375rem;
    padding: 1rem;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.875rem;
    overflow-x: auto;
    white-space: pre;
}

/* ── Drag-and-drop priority items ── */
.priority-item {
    cursor: grab;
    user-select: none;
}
.priority-item:active {
    cursor: grabbing;
}

/* ── Dark mode adjustments ── */
[data-bs-theme="dark"] .card:hover {
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.3);
}

[data-bs-theme="dark"] .navbar {
    background-color: #0d0f12 !important;
}
