.schedule-container {
    max-width: 100%;
    overflow-x: auto;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.schedule-table th,
.schedule-table td {
    border: 1px solid #ddd;
    padding: 0.5rem;
    text-align: left;
}

.schedule-table th {
    background-color: #f5f5f5;
    font-weight: 600;
}

.date-input {
    width: 100%;
    padding: 0.25rem;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.past-date {
    text-decoration: line-through;
    color: #dc3545;
    background-color: #ffe6e6;
}

.today-date {
    background-color: #0d6efd;
    color: white;
    font-weight: bold;
}

.schedule-table {
    border: 2px solid black !important;
}

.delete-row {
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    cursor: pointer;
}

.delete-row:hover {
    background-color: #c82333;
}

#save-schedule {
    margin-top: 1rem;
}

#save-message {
    margin-top: 0.5rem;
    color: #28a745;
}
