body {
    font-family: 'Inter', sans-serif;
    color: #2D3748;
    background-color: #F7FAFC;
}
.bg-primary { background-color: #1A365D !important; }
.text-primary { color: #1A365D !important; }
.btn-primary { background-color: #1A365D; border-color: #1A365D; }
.btn-primary:hover { background-color: #2A4365; border-color: #2A4365; }

.admin-body { background-color: #F7FAFC; }
.sidebar-nav .nav-link { 
    color: #4A5568; 
    padding: 12px 20px; 
    font-weight: 600; 
    font-size: 14px; 
    margin-bottom: 5px;
    border-radius: 8px;
    transition: all 0.2s;
}
.sidebar-nav .active-nav { 
    background-color: #1A365D; 
    color: #ffffff !important; 
}

.card { 
    border: none; 
    border-radius: 12px; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.04); 
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.badge-disponivel { background-color: #C6F6D5; color: #22543D; font-weight: 600; }
.badge-vendido { background-color: #E2E8F0; color: #4A5568; font-weight: 600; }
.badge-reservado { background-color: #FEEBC8; color: #7B341E; font-weight: 600; }

.table th {
    font-size: 12px;
    text-transform: uppercase;
    color: #718096;
    font-weight: 700;
    letter-spacing: 0.05em;
    border-top: none;
    padding-bottom: 15px;
}
.table td {
    vertical-align: middle;
    font-size: 14px;
    font-weight: 500;
}

.vehicle-img-thumb {
    width: 60px;
    height: 45px;
    object-fit: cover;
    border-radius: 6px;
}

.form-control, .form-select {
    border-radius: 8px;
    border: 1px solid #E2E8F0;
    padding: 10px 15px;
}
.form-control:focus, .form-select:focus {
    box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
    border-color: #1A365D;
}

.btn { border-radius: 8px; font-weight: 600; padding: 10px 20px; }

/* Dashboard Cards */
.dash-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.dash-card-icon.bg-blue-light { background-color: #EBF8FF; color: #3182CE; }
.dash-card-icon.bg-green-light { background-color: #C6F6D5; color: #38A169; }
.dash-card-icon.bg-orange-light { background-color: #FEEBC8; color: #DD6B20; }
.dash-card-icon.bg-gray-light { background-color: #EDF2F7; color: #A0AEC0; }

.nav-pills .nav-link { border-radius: 8px; color: #4A5568; font-weight: 600; padding: 8px 16px; }
.nav-pills .nav-link.active { background-color: #1A365D; color: white !important; }

/* Gallery */
.gallery-main { height: 400px; object-fit: cover; border-radius: 12px; width: 100%; }
.gallery-thumb { height: 80px; object-fit: cover; border-radius: 8px; width: 100%; cursor: pointer; opacity: 0.6; transition: 0.2s; }
.gallery-thumb:hover, .gallery-thumb.active { opacity: 1; border: 2px solid #1A365D; }

/* List View Toggle Support */
.list-view .catalog-item {
    width: 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
}
.list-view .catalog-card {
    flex-direction: row !important;
    height: 220px !important;
}
.list-view .catalog-img-wrap {
    flex: 0 0 350px;
    height: 100%;
}
.list-view .catalog-img {
    height: 100% !important;
    border-radius: 12px 0 0 12px;
}
.list-view .catalog-img-placeholder {
    height: 100% !important;
    border-radius: 12px 0 0 12px;
}
@media (max-width: 768px) {
    .list-view .catalog-card {
        flex-direction: column !important;
        height: auto !important;
    }
    .list-view .catalog-img-wrap {
        flex: auto;
        width: 100%;
    }
    .list-view .catalog-img, .list-view .catalog-img-placeholder {
        height: 200px !important;
        border-radius: 12px 12px 0 0;
    }
}
