body {
    background-color: #f8f9fa;
}

.container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    padding: 30px;
}

h1, h2 {
    color: #007bff;
}

.time-slot {
    cursor: pointer;
    transition: background-color 0.3s;
}

.time-slot:hover {
    background-color: #e9ecef;
}

.time-slot.selected {
    background-color: #007bff;
    color: #fff;
}

#appointmentForm {
    border-top: 1px solid #dee2e6;
    padding-top: 20px;
}

#exclusionList .list-group-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.remove-exclusion {
    cursor: pointer;
    color: #dc3545;
}
