/* Planning */
.planning-container {
    margin-top: 20px;
    text-align: center;
    overflow-x: auto;
}

.planning-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.planning-table th,
.planning-table td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: center;
    font-size: 1.2rem;
}

.planning-table thead th {
    background-color: #f5f5f5;
    font-weight: bold;
}

.planning-table tbody td {
    background-color: #f9f9f9;
}

.time-slot {
    position: relative;
    height: 50px;
    background-color: #fff;
}

.time-block {
    position: absolute;
    background-color: lightgreen;
    height: 100%;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
}

.add-slot {
    background-color: #28a745;
    border: none;
    color: white;
    padding: 8px 12px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.4rem;
    transition: background-color 0.3s ease;
}

.add-slot:hover {
    background-color: #218838;
}