body.bellota-body {
    background: radial-gradient(circle at top left, #ffe6e9 0, #f3f4f6 40%, #edf2f7 100%);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.bellota-navbar {
    background: linear-gradient(90deg, #e63946, #bf1e2d);
}

.bellota-logo-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #ffffff 0, #ffffff 25%, #e63946 60%, #7f1a1e 100%);
}

.btn-bellota {
    background-color: #e63946;
    border-color: #e63946;
    color: #fff;
    border-radius: 999px;
    padding-inline: 1.2rem;
}

.btn-bellota:hover {
    background-color: #bf1e2d;
    border-color: #bf1e2d;
    color: #fff;
}

.bellota-footer {
    background-color: #ffffff;
    border-top: 1px solid #e0e0e0;
}

.bellota-hero {
    background: linear-gradient(120deg, #ffffff, #ffe6e9);
}

.bellota-main {
    min-height: calc(100vh - 120px);
}

.bellota-table thead th {
    border-bottom-width: 1px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: .03em;
}

.bellota-table tbody tr:hover {
    background-color: #f9fafb;
}

.bellota-board-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.08);
    transition: all .15s ease-in-out;
}

.bellota-kanban-row {
    overflow-x: auto;
    white-space: nowrap;
}

.bellota-column {
    background-color: #f9fafb;
}

.bellota-column-body {
    min-height: 80px;
}

.bellota-task-card {
    cursor: grab;
    border-radius: .5rem;
    border: 1px solid #e5e7eb;
    background-color: #ffffff;
}

.bellota-task-card:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.08);
}

.bellota-task-critical {
    border-left: 4px solid #e63946;
    box-shadow: 0 0.25rem 0.75rem rgba(230, 57, 70, 0.15);
}

.bellota-column .card-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

.bellota-column-body {
    background-color: #f9fafb;
    padding-bottom: .75rem;
}

.navbar-brand span.fw-bold {
    letter-spacing: .03em;
    font-size: 1rem;
}

@media (max-width: 767.98px) {
    .bellota-main {
        padding-inline: 1rem;
    }
}


