/* Custom styles for Odoo Instance Manager — Braintec Design */

/* ── Yellow accent stripe under navbar ── */
.navbar::after {
    content: '';
    display: block;
    height: 3px;
    background: linear-gradient(90deg, #FDC300 0%, #FDC300 60%, transparent 100%);
}

/* ── Login card special styling ── */
.card-header.bg-primary h4 {
    font-weight: 600;
}

/* ── Table styling ── */
.table-hover tbody tr:hover {
    background-color: #EDF4F8;
}
.table thead.table-light th {
    background-color: #F4F5F7;
    color: #113D57;
    font-weight: 600;
    border-bottom-color: #E3E3E3;
}

/* ── Delete page danger card ── */
.card.border-danger .card-header.bg-danger {
    background: linear-gradient(135deg, #c82333 0%, #dc3545 100%) !important;
    border-bottom: 3px solid #FDC300;
}

/* ── Stats icon specific colours ── */
.stats-icon.text-success {
    color: #72C5BD !important;
}

/* ── Form sections inside bg-light cards ── */
.card.bg-light {
    background-color: #F4F5F7 !important;
    border-color: #E3E3E3;
}

/* ── Scrollbar subtle styling ── */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #F4F5F7;
}
::-webkit-scrollbar-thumb {
    background: #B6DCCD;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #72C5BD;
}

/* ── Selection color ── */
::selection {
    background-color: #FDC300;
    color: #113D57;
}
