
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    border: 1px solid #ccc;
    padding: 10px;
    background-color: #fff;
}

.calendar-header {
    display: contents; /* Allows children to be direct grid items */
}

.day-name {
    background-color: #f0f0f0;
    padding: 8px;
    text-align: center;
    font-weight: bold;
    border: 1px solid #eee;
}

.calendar-body {
    display: contents;
}

.calendar-day {
    min-height: 120px; /* Adjust as needed */
    border: 1px solid #eee;
    padding: 5px;
    background-color: #fdfdfd;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

.calendar-day.empty {
    background-color: #f8f8f8;
}

.day-number {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 5px;
}

.employee-list {
    max-height: 600px; /* Adjust as needed */
    overflow-y: auto;
    border: 1px solid #ccc;
    padding: 10px;
}

.draggable {
    cursor: grab;
    background-color: #e9ecef;
    margin-bottom: 5px;
    padding: 8px;
    border-radius: 4px;
}

.draggable:active {
    cursor: grabbing;
}

.droppable.drag-over {
    background-color: #d4edda; /* Highlight on drag over */
    border: 2px dashed #28a745;
}

.assigned-shifts {
    width: 100%;
}

.assigned-shift-item {
    background-color: #007bff;
    color: white;
    padding: 3px 5px;
    margin-bottom: 2px;
    border-radius: 3px;
    font-size: 0.8em;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.assigned-shift-item .delete-shift {
    background: none;
    border: none;
    color: white;
    font-size: 1em;
    cursor: pointer;
    padding: 0 3px;
}

.assigned-shift-item .delete-shift:hover {
    color: #dc3545;
}
