﻿/* Fundo do calendário */
.tempus-dominus-widget {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-family: Arial, sans-serif;
    min-width: 280px;
    width: auto;
}

/* Centralizar o cabeçalho e alinhar os dias */
.tempus-dominus-widget .calendar-header,
.tempus-dominus-widget .calendar {
    width: 100%;
}

/* Cabeçalho do mês */
.tempus-dominus-widget .calendar-header {
    background-color: #0081C2;
    color: #fff;
    font-weight: bold;
    text-align: center;
    padding: 6px 0;
    border-radius: 6px 6px 0 0;
}

/* Botões de navegação (setinhas) */
.tempus-dominus-widget .calendar-header .previous,
.tempus-dominus-widget .calendar-header .next {
    color: #fff;
    cursor: pointer;
}

/* Dias da semana (Dom, Seg, Ter...) */
.tempus-dominus-widget .dow {
    background-color: #eaf3ff;
    color: #0081C2;
    font-weight: bold;
    padding: 4px 0;
}

/* Dias normais */
.tempus-dominus-widget .day {
    color: #333;
    padding: 6px;
    cursor: pointer;
}

/* Hover */
.tempus-dominus-widget .day:hover {
    background-color: #cce5ff;
    border-radius: 4px;
}

/* Hoje */
.tempus-dominus-widget .today {
    background-color: #ffeeba;
    border-radius: 4px;
}

/* Dia selecionado */
.tempus-dominus-widget .active {
    background-color: #0081C2 !important;
    color: #fff !important;
    border-radius: 4px;
}
