/* Sfondo geometrico */
body {
    position: relative;
    background-color: white;
    min-height: 100vh;
}

    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('/sfondo.png');
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        opacity: 0.15; /* 15% visibilità, puoi aumentare o diminuire */
        z-index: -1;
    }


/* Navbar */
.navbar-brand {
    font-weight: bold;
    font-size: 1.3rem;
}

.navbar .nav-link {
    font-weight: 500;
}

    .navbar .nav-link:hover {
        color: #0d6efd;
    }

/* Card */
.card {
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Bottoni */
.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

    .btn-primary:hover {
        background-color: #0b5ed7;
        border-color: #0a58ca;
    }

.btn-danger-custom {
    background-color: #A93636;
    border-color: #A93636;
    color: white;
}

    .btn-danger-custom:hover {
        background-color: #922F2F;
        border-color: #922F2F;
    }

/* Footer */
footer {
    background-color: white;
    border-top: 1px solid #dee2e6;
}
