/* Filters Bar */
.filters-bar {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 0.35rem 1.2rem rgba(15, 23, 42, 0.08);
    margin-bottom: 2rem;
}

/* Section Title */
.section-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    padding-bottom: 0.8rem;
    border-bottom: 3px solid var(--primary-color);
    display: inline-block;
}

.section-title i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Vehicle Cards */
.vehicle-card {
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 0.35rem 1.2rem rgba(15, 23, 42, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(148, 163, 184, 0.25);
    position: relative;
}

.vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1.5rem rgba(15, 23, 42, 0.12);
}

.vehicle-card.status-active {
    border-left: 4px solid var(--success-color);
}

.vehicle-card.status-warning {
    border-left: 4px solid var(--warning-color);
}

.vehicle-card.status-inactive {
    border-left: 4px solid var(--secondary-color);
    opacity: 0.85;
}

/* Vehicle Header */
.vehicle-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.vehicle-id {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: 'Courier New', monospace;
}

/* Vehicle Icon */
.vehicle-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #e67e00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem auto;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
}

.vehicle-icon.pickup {
    background: linear-gradient(135deg, #667eea, #764ba2);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Vehicle Title */
.vehicle-card h5 {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Vehicle Details */
.vehicle-details {
    margin: 1.2rem 0;
}

.detail-item {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: #6c757d;
}

.detail-item i {
    width: 25px;
    color: var(--primary-color);
    margin-right: 0.8rem;
}

.detail-item span {
    flex: 1;
}

/* Vehicle Actions */
.vehicle-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

.vehicle-actions .btn {
    flex: 1;
}

/* Badges */
.badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
}

/* Form Controls */
.filters-bar .form-control,
.filters-bar .form-select {
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.filters-bar .form-control:focus,
.filters-bar .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 140, 0, 0.15);
}

/* Button Groups */
.btn-group .btn {
    border-radius: 8px;
}

.btn-group .btn:first-child {
    border-radius: 8px 0 0 8px;
}

.btn-group .btn:last-child {
    border-radius: 0 8px 8px 0;
}

.btn-group .btn.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Drill Cards (Foreuses) - Same style as vehicle cards */
.drill-card {
    background: white !important;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 0.35rem 1.2rem rgba(15, 23, 42, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(148, 163, 184, 0.25);
    position: relative;
}

.drill-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1.5rem rgba(15, 23, 42, 0.12);
}

.drill-card.status-disponible {
    border-left: 4px solid var(--success-color);
}

.drill-card.status-service {
    border-left: 4px solid var(--info-color);
}

.drill-card.status-entretien {
    border-left: 4px solid var(--warning-color);
}

.drill-card.status-reparation {
    border-left: 4px solid var(--danger-color);
}

/* Drill Icon */
.drill-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #e67e00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem auto;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
}

/* Drill Details */
.drill-card h5 {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.drill-card .detail-item {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: #6c757d;
}

.drill-card .detail-item i {
    width: 25px;
    color: var(--primary-color);
    margin-right: 0.8rem;
}

/* Drill Actions */
.drill-card .vehicle-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

.drill-card .vehicle-actions .btn {
    flex: 1;
}

/* Section Headers */
.section-header {
    background: white !important;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 0.35rem 1.2rem rgba(15, 23, 42, 0.08);
    margin-bottom: 1.5rem;
}

.section-header h4 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.section-header i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .filters-bar .col-md-3,
    .filters-bar .col-md-2 {
        margin-bottom: 0.5rem;
    }
}

