/* Style for the card */
.card {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    background-color: #fff;
}

.card-header {
    background-color: #fc0;
    color: white;
    padding: 15px;
    text-align: center;
    border-bottom: black;
}

.card-body {
    padding: 20px;
}

.btn-danger {
    background-color: #fc0;
    border: none;
    cursor: pointer;
}

.btn-danger:hover {
    background-color: rgb(114, 98, 30);
}

/* Styling for time slots */
.time-slot-grid {
    display: grid; /* Ensure this is set to 'grid' when time slots are shown */
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.time-slots {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fc0; /* Change to blue for visibility */
    color: white; /* Change text color to white */
    cursor: pointer;
    text-align: center;
}
.time-slots:hover {
    background-color:#12374f;
}
.time-slot.selected {
    background-color: #007bff;
    color: #fff;
}

.btn {
    background-color: #dc3545; /* Bootstrap danger button */
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
}

.btn:hover {
    background-color: #c82333;
}
