﻿.hidden {
    display: none;
}

.botao {
    height: 25px;
    padding-right: 10px;
    margin-right: 5px;
    /*margin-bottom: 3px;*/
}

.botao2 {
    height: 10px;
    margin-left: 10px;
}

.botao3 {
    height: 10px;
    margin-left: 2px;
}

/*.mud-avatar {
    border-radius: 50%;
    border: 2px solid white;
}

    .mud-avatar .mud-elevation-6 {
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    }*/

.circular-progress-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .circular-progress-container .day-text {
        position: absolute;
        font-size: 16px;
        font-weight: bold;
        color: white;
    }
.date-display {
    padding-bottom: 5px;
}

.date-navigation {
    padding-bottom: 15px;
}

.calendar-grid-week-days {
    display: grid;
    grid-template-columns: repeat(7, 50px);
    padding-bottom: 25px;
    padding-left:3vh;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 50px);
    padding-bottom: 20px;
    padding-left: 3.8vh;
}

.weekday-label {
    font-weight: bolder;
    text-align: center;
    padding-left: 20px;
}

.calendar-day {
    text-align: center;
}

.day-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    height: 32px;
    width: 32px;
    margin: auto;
    border-radius: 50%;
    box-shadow: 0 6px 4px rgba(0, 0, 0, 0.1);
}

.day-circle-completado {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    height: 32px;
    width: 32px;
    margin: auto;
    border-radius: 50%;
    box-shadow: 0 6px 4px rgba(0, 0, 0, 0.1);
    background-color: forestgreen;
}

.day-circle-solicitada {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    height: 32px;
    width: 32px;
    margin: auto;
    border-radius: 50%;
    box-shadow: 0 6px 4px rgba(0, 0, 0, 0.1);
    background-color: orange;
}


.day-circle-concedida {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    height: 32px;
    width: 32px;
    margin: auto;
    border-radius: 50%;
    box-shadow: 0 6px 4px rgba(0, 0, 0, 0.1);
    background-color: royalblue;
}

.day-circle-negada {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    height: 32px;
    width: 32px;
    margin: auto;
    border-radius: 50%;
    box-shadow: 0 6px 4px rgba(0, 0, 0, 0.1);
    background-color: darkred;
}

.mud-grid-spacing-xs-3 > .mud-grid-item.calendar-day {
    padding: 3px !important; /* Ajuste o valor de padding conforme necessário */
}

.day-label {
    margin-top: 5px;
}

.center {
    text-align: center;
}

.right {
    display: flex;
    justify-content: flex-end; /* Alinha o botão "ANTERIOR" à direita */
}

.left {
    display: flex;
    justify-content: flex-start; /* Alinha o botão "PRÓXIMO" à esquerda */
}

@-webkit-keyframes ballPulseDouble {
    0%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes ballPulseDouble {
    0%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
