/* Centralise the calendar */
#calendar-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}
# Calendar styles
.calendar-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: #fff;
    font-size: 13px;
    table-layout: fixed;
}
.calendar-table th, .calendar-table td {
    border: 1px solid #ccc;
    padding: 2px;
    text-align: center;
    width: 14%;
    min-width: 0;
    word-break: break-word;
    font-size: 12px;
}
.calendar-table th, .calendar-table td {
    border: 1px solid #ccc;
    padding: 4px;
    text-align: center;
    min-width: 40px;
    word-break: break-word;
}
.calendar-table th, .calendar-table td {
    border: 1px solid #ccc;
    padding: 6px;
    text-align: center;
    min-width: 60px;
}
.calendar-table th, .calendar-table td {
    border: 1px solid #ccc;
    padding: 6px;
    text-align: center;
    min-width: 60px;
}
.calendar-table th {
    background: #f0f0f0;
}
.calendar-slot {
    cursor: pointer;
    background: #e6f7ff;
    transition: background 0.2s;
}
.calendar-slot:hover {
    background: #b3e0ff;
}
.calendar-slot.selected {
    background: #0078d7;
    color: #fff;
}
body {
    font-family: Arial, sans-serif;
    background: #f4f4f4;
    margin: 0;
    padding: 0;
}
.container {
    width: 100%;
    max-width: 100vw;
    margin: 0 auto;
    background: #fff;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    box-sizing: border-box;
}
h1 {
    text-align: center;
    margin-bottom: 24px;
}
form label {
    display: block;
    margin-top: 12px;
}
form input, form select {
    width: 100%;
    padding: 8px;
    margin-top: 4px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
button {
    margin-top: 20px;
    width: 100%;
    padding: 10px;
    background: #0078d7;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}
button:hover {
    background: #005fa3;
}
#message {
    margin-top: 20px;
    text-align: center;
    color: green;
}
