
.cdh-days {
    border: 1px solid lightgrey;
    display: flex;
    flex-direction: column;
}

.cdh-title {
    font-size: large;
    font-weight: bold;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cdh-container-dates {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.cdh-day {
    display: flex;
    flex-direction: row;
    flex: 1;
    border-top: 1px solid lightgray;
    height: 14.3%;
}

.cdh-day.cdh-today {
    border-left: 4px solid #03A9F4;
    margin-left: -4px;
    color: #03A9F4;
    font-weight: bold;
}

.cdh-info-day {
    border-right: 1px solid lightgray;
    display: flex;
    flex-direction: column;
    width: 60px;
    justify-content: center;
    align-items: center;
    font-size: small;
}

.cdh-events {
    overflow-x: auto;
    display: flex;
    flex-direction: row;
    gap: 5px;
    width: 100%;
    padding: 5px;
    justify-content: flex-start;
    align-items: center;
}

.cdh-events::-webkit-scrollbar {
    height: 4px;
}

.cdh-event {
    min-width: 150px;
    width: 150px;
    max-height: 100%;
    font-size: smaller;
    background: #2196F3;
    color: #2f4f4f;
    height: 100%;
    border-radius: 3px;
    padding: 2px 5px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.cdh-weeks {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 4px;
    border-top: 1px solid lightgray;
}

.cdh-btn-week {
    flex: 1;
    font-size: smaller;
    text-align: center;
    line-height: 1.25;
    padding: 4px;
    flex-direction: column;
    display: flex;
    cursor: pointer;
}


.cdh-btn-week.active {
    background-color: #03A9F4;
    color: white;
    border-radius: 20px;
}


.cdh-btn {
    
}

.cdh-event-title {
    font-weight: bold;
    flex: 1;
    max-height: calc(100%);
    overflow: hidden;
    line-height: 1.25;
    font-size: 90%;
}

.cdh-event-inicio {
    font-size: 80%;
}

.cdh-event-duracao {
    font-size: 80%;
}