/*        COMBUSTIBILI  INIZIO        */
body, .container-fluid {
    background-color: #f8f9fa; /* Grigio molto chiaro */
}


.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;
}

.text-default {
    color: #6c757d;
}

.page-header-breadcrumb {
    margin-bottom: 1.5rem;
}

.breadcrumb-input {
    min-width: 200px;
}

/*        COMBUSTIBILI      FINE      */
