.addPlanStyle {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    background-color: #f2f8fb;
    opacity: 0;
    border-radius: 5px;
    color: #0f5173;
    transition: background-color 0.3s, opacity 0.3s;
}

.addPlanStyle:hover {
    background-color: #c6dbe159;
    opacity: 1;
}

.taskContainer {
    box-shadow: 0px 7px 18px 0px rgba(15, 105, 115, 0.03),
        0px 6px 10px 0px rgba(15, 105, 115, 0.04),
        0px 3px 5px 0px rgba(15, 105, 115, 0.05);
    display: flex;
    justify-content: center;
    column-gap: 10px;
    flex-direction: column;
    height: auto;
    border-left: 5px solid #457993;
    background-color: #f4ffff;
    color: #457993;
    cursor: pointer;
    border-radius: 5px;
    margin-bottom: 5px;
    font-size: 13px;
    overflow: auto;
    padding: 2px;
    z-index: 10;
}

.tasklabel {
    color: #55585d;
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
    margin-left: 5px;
}

.taskhour {
    font-size: 12px;
    line-height: 16px;
    font-weight: 600;
    margin-left: 5px;
}

.planningCalendar {
    width: 100%;
    border-radius: 0.5rem;
    z-index: 10;
    display: flex;
    flex-direction: column;
    border: 0.74px solid rgba(198, 219, 225, 0.68);
    border-bottom: none;
    background-color: white;

}

.planningCalendarHeader {
    display: flex;
    width: 100%;
    z-index: 200;
    border-bottom: 1.5px solid #0f52737e;
    background-color: #fff;
    position: sticky;
    top: 0px;
}

.planningCalendarRow {
    display: flex;
    width: 100%;
    border-bottom: 1.5px solid #0f52737e;
}

.planningCalendarRow:last-child {
    border-bottom: none;
}

.planningCalendar .dayTh,
.planningCalendar .groupCol {
    flex: 0 0 150px;
    min-width: 150px;
    color: #0f5173;
    padding-left: 5px;
    display: flex;
    align-items: center;
    background-color: inherit;
}

.planningCalendar .dayCol {
    flex: 1;
    min-width: 120px;
    border-left: 0.74px solid rgba(198, 219, 225, 0.68);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 768px) {

    .planningCalendar .dayTh,
    .planningCalendar .groupCol {
        flex: 0 0 100px;
        min-width: 100px;
        font-size: 13px;
        position: sticky;
        left: 0;
        z-index: 50;
        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.05);
        background-color: #fff;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        padding-left: 10px;
    }

    .planningCalendar .dayCol {
        min-width: 120px;
    }

    .planningCalendarHeader {
        z-index: 201;
        /* Layer over the sticky row column */
    }

    /* Make sure the group container labels also truncate */
    .groupCol label {
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }

    .planningCalendar {
        width: auto;
    }
}

.planningCalendar .totalTh,
.planningCalendar .totalCol {
    flex: 0 0 50px;
    min-width: 50px;
    color: #0f5173;
    text-align: right;
    padding-right: 5px;
    border-left: 0.74px solid rgba(198, 219, 225, 0.68);
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.CalendarTableForDay {
    display: flex;
    gap: 10px;
    width: 100vw;
    height: auto;
}

.CalendarTableForDayTasksContainer {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: auto;
    padding: 10px;
    position: relative;
}

.CalendarTableForDayRow {
    display: flex !important;
    flex-direction: row !important;
    gap: 15px;
    align-items: flex-start;
    padding: 15px !important;
}

.CalendarTableForDayGroupTasks {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}

.CalendarTableForDayGroupTasks .taskContainer,
.CalendarTableForDayGroupTasks .addPlanStyle {
    margin-bottom: 0px;
    height: 100%;
    min-height: 80px;
}

.calendarForWeek {
    display: flex;
    width: 100%;
    flex: 1;
    overflow: auto;
    position: relative;
}

.calendarForWeek-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}