/*        VEICOLI PASSEGGERI      INIZIO      */


.custom-card {
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.main-card-item {
    transition: all 0.15s ease;
}

    .main-card-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

.btn-wave {
    position: relative;
    overflow: hidden;
}

    .btn-wave:before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.5);
        transition: width 0.6s, height 0.6s;
        transform: translate(-50%, -50%);
        z-index: 0;
    }

    .btn-wave:active:before {
        width: 300px;
        height: 300px;
    }

.avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.avatar-rounded {
    border-radius: 50%;
}

.avatar-md {
    width: 2.5rem;
    height: 2.5rem;
}

.bg-primary-transparent {
    background-color: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
}

.bg-success-transparent {
    background-color: rgba(25, 135, 84, 0.1);
    color: #198754;
}

.bg-warning-transparent {
    background-color: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.bg-danger-transparent {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.bg-info-transparent {
    background-color: rgba(13, 202, 240, 0.1);
    color: #0dcaf0;
}

.bg-secondary-transparent {
    background-color: rgba(108, 117, 125, 0.1);
    color: #6c757d;
}

.text-default {
    color: #6c757d;
}

.page-header-breadcrumb {
    margin-bottom: 1.5rem;
}

.breadcrumb-input {
    min-width: 200px;
}

.btn-primary-light {
    background-color: rgba(13, 110, 253, 0.1);
    border-color: rgba(13, 110, 253, 0.2);
    color: #0d6efd;
}

    .btn-primary-light:hover {
        background-color: rgba(13, 110, 253, 0.2);
        border-color: rgba(13, 110, 253, 0.3);
        color: #0d6efd;
    }

.btn-secondary-light {
    background-color: rgba(108, 117, 125, 0.1);
    border-color: rgba(108, 117, 125, 0.2);
    color: #6c757d;
}

    .btn-secondary-light:hover {
        background-color: rgba(108, 117, 125, 0.2);
        border-color: rgba(108, 117, 125, 0.3);
        color: #6c757d;
    }

.btn-danger-light {
    background-color: rgba(220, 53, 69, 0.1);
    border-color: rgba(220, 53, 69, 0.2);
    color: #dc3545;
}

    .btn-danger-light:hover {
        background-color: rgba(220, 53, 69, 0.2);
        border-color: rgba(220, 53, 69, 0.3);
        color: #dc3545;
    }

.lh-1 {
    line-height: 1;
}

.fw-semibold {
    font-weight: 600;
}

.badge.bg-success-transparent {
    background-color: rgba(25, 135, 84, 0.1) !important;
    color: #198754;
}

.badge.bg-danger-transparent {
    background-color: rgba(220, 53, 69, 0.1) !important;
    color: #dc3545;
}

.badge.bg-warning-transparent {
    background-color: rgba(255, 193, 7, 0.1) !important;
    color: #ffc107;
}

.badge.bg-info-transparent {
    background-color: rgba(13, 202, 240, 0.1) !important;
    color: #0dcaf0;
}

.badge.bg-primary-transparent {
    background-color: rgba(13, 110, 253, 0.1) !important;
    color: #0d6efd;
}

.modal-content {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.19), 0 6px 10px rgba(0, 0, 0, 0.23);
}

.btn-list {
    display: flex;
    gap: 0.25rem;
}

.pagination-style-4 .page-link {
    border: 1px solid #dee2e6;
    color: #6c757d;
    padding: 0.375rem 0.75rem;
    margin: 0 0.125rem;
    border-radius: 0.25rem;
}

.pagination-style-4 .page-item.active .page-link {
    background-color: #0d6efd;
    border-color: #0d6efd;
    color: white;
}

.table th {
    border-top: none;
    font-weight: 600;
    background-color: #f8f9fa;
}

#vehicles-chart,
#efficiency-chart {
    height: 300px;
}

.euro-badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
}

.euro-6 {
    background-color: rgba(25, 135, 84, 0.1);
    color: #198754;
}

.euro-5 {
    background-color: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.euro-4 {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.vehicle-type-icon {
    width: 24px;
    height: 24px;
}

/*        VEICOLI PASSEGGERI      FINE      */
