
/* Basic and clean styles for the calendar */
.cal-title {
    font-family: Arial, sans-serif;
    text-transform: capitalize;
    letter-spacing: .5px;
    margin: 8px 0 16px;
}
.calendario {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    table-layout: fixed;
}
.calendario thead th {
    background: #f7f7f8;
    border: 1px solid #e6e6e6;
    text-align: center;
    padding: 10px;
    font-weight: 600;
    font-size: 14px;
}
.calendario td {
    border: 1px solid #e6e6e6;
    padding: 8px;
}

/* Media Queries for responsive design */
@media (max-width: 768px) {
    .calendario th, .calendario td {
        font-size: 12px;
        padding: 6px;
    }

    .calendario {
        table-layout: auto;
    }
}

@media (max-width: 480px) {
    .cal-title {
        font-size: 18px;
    }

    .calendario th, .calendario td {
        font-size: 10px;
        padding: 4px;
    }

    .calendario {
        width: 100%;
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}
