﻿.giorno_fuori_mese {
    background-color: #eeeeee !important;
    color: #bbbbbb !important;
}



.giorno_fuori_servizio {
    background-color: #cccccc !important; 
    color: #212529 !important;
}

.giorno_ferie {
    background-color: #dc3545 !important; 
    color: white !important;
}

.giorno_non_disponibile {
    background-color: #cccccc !important;
    color: #212529 !important;
}


.giorno_disponibile {
    background-color: #198754 !important;
    color: white !important;
    font-weight: bold;
}

    .giorno_disponibile a {
        display: flex !important;
        align-items: center; /* Centra verticalmente */
        justify-content: center; /* Centra orizzontalmente */
        width: 100%;
        height: 100%;
        padding: 8px 0;
        color: white;
        text-align: center;
        text-decoration: none;
        transition: background-color 0.2s ease, transform 0.1s ease;
    }

        .giorno_disponibile a:hover {
            background-color: #146c43 !important; /* verde più scuro */
            transform: scale(1.03);
            border-radius: 6px;
        }

