/* Fleet Portal - Minimal Odoo-style CSS */

/* Simple card hover effect - subtle */
.o_portal_doc .card:hover {
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    transition: all 0.2s ease;
}

/* Ensure all portal cards have consistent borders */
.container .card {
    border: 1px solid #dee2e6;
}

/* Light card headers */
.card-header.bg-light {
    background-color: #f8f9fa !important;
    border-bottom: 1px solid #dee2e6;
}

/* Clean table styling */
.table-hover tbody tr:hover {
    background-color: #f8f9fa;
}

/* Remove any remaining heavy shadows */
.card {
    box-shadow: none !important;
}

/* Simple focus state for cards */
.card:focus-within {
    border-color: #0d6efd;
}
