.cdh-ghost {
    border: 1px dashed red;
}

.cdh-dragging {
    border: 1px dashed orange;
    width: 100px !important;
    max-width: 100px !important;
    min-width: 100px !important;
    height: 100px !important;
    max-height: 100px !important;
    min-height: 100px !important;
    display: block !important;
}

.cdh-item-placeholder {
    border: 1px dashed lightcyan;
    background: grey;
    opacity: 0.4;
    height: 100px !important;
    max-height: 100px !important;
    min-height: 100px !important;
    
}

.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: space-between;
}

.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: 6px;
}

.cdh-events::-webkit-scrollbar-thumb {
    background: #004560;
}

.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;
}

.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%;
}


.cdh-days.kanbanmode .cdh-container-dates {
    flex-direction: row;
}

.cdh-days.kanbanmode .cdh-day {
    height: 100%;
    width: 14.3%;
    flex-direction: column;
    border-top: none;
    border-right: 1px solid lightgray;
}

.cdh-days.kanbanmode .cdh-day.cdh-today {
    border-left: none;
}

.cdh-days.kanbanmode .cdh-day .cdh-info-day {
    border-bottom: 1px solid lightgray;
    border-right: none;
}

.cdh-days.kanbanmode .cdh-day:last-child {
    border-right: none;
}

.cdh-days.kanbanmode .cdh-events {
    flex-direction: column;
    overflow: auto;
    height: calc(100vh - 265px);
}
.cdh-days.kanbanmode .cdh-day.cdh-today .cdh-info-day {
    border-bottom: 1px solid #03A9F4;
}


.cdh-days.kanbanmode .cdh-day .cdh-event,
.cdh-days.kanbanmode .cdh-day .cdh-info-day {
    width: 100%;
    min-width: 100%;
}

.cdh-days.kanbanmode .cdh-day .cdh-event {
    height: fit-content;
    min-height: 60px;
}


