/* General Styles */
.plato-booking-container {
    max-width: 600px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

.form-group {
    margin-bottom: 20px;
}

.plato-select,
.plato-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

.slots-list {
    margin-top: 20px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #f9f9f9;
}

.slots-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
    justify-items: center;
}

.slot-button {
    display: inline-block;
    padding: 10px;
    background-color: #0073aa;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    width: 100%;
    max-width: 120px;
    font-size: 1em;
}

.slot-button:hover {
    background-color: #005f8a;
}

/* Modal Styles */
.booking-form {
    display: none;
    position: fixed;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.plato-button {
    padding: 10px 20px;
    background: #0073aa;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.cancel-btn {
    background: #ccc;
    color: #333;
}

.plato-button:hover,
.cancel-btn:hover {
    background: #005f8a;
}

#slotsMessage {
    color: #666;
    text-align: center;
}
#slotsList ul {
    list-style: none; /* Removes bullets */
    padding: 0; /* Removes default padding */
    margin: 0; /* Removes default margin */
}

#slotsList li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #ddd; /* Optional: Adds a thin line between items */
    font-size: 1.1em;
}

#slotsList li:last-child {
    border-bottom: none; /* Removes the border from the last item */
}

#slotsList strong {
    font-weight: bold;
    color: #333;
}

.bookNow {
    padding: 8px 15px;
    background-color: #c7a67e;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.bookNow:hover {
    background-color: #005b8c;
}
.booking-form {
    background-color: #ffffff;
    padding: 30px;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: 'Arial', sans-serif;
}

.booking-form h3 {
    font-size: 1.8em;
    margin-bottom: 20px;
    text-align: center;
    color: #333;
}

.form-group {
    margin-bottom: 20px;
}

.plato-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1em;
    color: #333;
    background-color: #fafafa;
}

.plato-input:focus {
    border-color: #0073aa;
    outline: none;
}

.plato-button {
    display: inline-block;
    padding: 12px 20px;
    font-size: 1em;
    color: #fff;
    background-color: #c7a67e;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease;
    width: 100%;
    margin-top: 10px;
}

.plato-button:hover {
    background-color: #005b8c;
}

.cancel-btn {
    background-color: #ccc;
    margin-top: 10px;
}

.cancel-btn:hover {
    background-color: #999;
}

#bookingResult {
    margin-top: 20px;
    text-align: center;
    color: #0073aa;
}
/* Add this to your CSS file */
.booking-confirmation {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff    ;
    padding: 20px;
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    text-align: center;
    width: 300px;
    border-radius: 8px;
}
.booking-confirmation .confirmation-content {
    margin: 10px 0;
}
.booking-confirmation button {
    margin-top: 10px;
    padding: 8px 15px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.booking-confirmation button:hover {
    background: #0056b3;
}
.available-date {
    background-color: #28a745;
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
}