/* Updated color scheme */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #1e1830; /* Darker purple */
    margin: 0;
    padding: 20px;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #dddafc; /* Light lavender */
}

.booking-container {
    
    background: #233505;
    background: linear-gradient(0deg, 
    rgb(25, 39, 3) 0%, 
    rgb(50, 75, 5) 25%, 
    rgb(103, 77, 133) 50%,
    rgb(55, 51, 92) 75%, 
    rgb(21, 22, 54) 100%);
    
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    padding: 30px;
    width: 100%;
    max-width: 600px;
    color: #dddafc;
    border: 1px solid #bba1be; /* Light purple */
}

h1 {
    color: #dddafc;
    text-align: center;
    margin-bottom: 30px;
}

.form-group {
    margin-right: 10px;
    margin-bottom: 20px;
    max-width: 600px;
    padding: 0px 10px 0px 0px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #dddafc;
}

input, select, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #bba1be;
    border-radius: 5px;
    font-family: inherit;
    font-size: 16px;
    background-color: rgba(221, 218, 252, 0.1);
    color: #dddafc;
}

button {
    background-color: #bba1be; /* Light purple */
    color: #292643; /* Dark text for contrast */
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    font-weight: 600; /* Bolder text */
    transition: all 0.3s;
}

button:hover {
    background-color: #dddafc; /* Light lavender */
    color: #292643;
}

.error {
    color: #ff9e9e; /* Softer red for errors */
    font-size: 14px;
    margin-top: 5px;
}

.success {
    background-color: #5d9d8b; /* Complementary green */
    color: white;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 20px;
    border: 1px solid #7abfad;
}

.opening-hours {
    background-color: rgba(187, 161, 190, 0.1); /* Light purple tint */
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 14px;
    border: 1px solid #bba1be;
}

.opening-hours strong {
    color: #dddafc;
}

::placeholder {
    color: #aaa;
    opacity: 1;
}

.close-btn {
    background-color: #bba1be;
    margin-top: 15px;
    color: #292643;
}

.close-btn:hover {
    background-color: #dddafc;
}

select#people {
    color: #292643; /* Dark text for better readability */
    background-color: rgba(221, 218, 252, 0.3);
}

.timeout-message {
    background-color: rgba(187, 161, 190, 0.3);
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    border: 1px solid #bba1be;
    text-align: center;
}

/* Arrow styles */
.arrow {
    border: solid #292643;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
}

.down {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

/* Table styles */
.table {
    table-layout: auto;
    margin-left: auto;
    margin-right: auto;
    width: 60%;
    color: #dddafc;
}

.t-center {
    text-align: center;
    vertical-align: center;
    font-weight: bold;
}

.t-left {
    text-align: left;
    vertical-align: center;
    line-height: 30px;
    font-weight: bold;
}

/* Additional contrast improvements */
input:focus, select:focus, textarea:focus {
    outline: 2px solid #bba1be;
    background-color: rgba(221, 218, 252, 0.2);
}

button:focus {
    outline: 2px solid #dddafc;
}

/* Toggle button style */
#toggle {
    width: 100%;
    padding: 5px 0;
    text-align: center;
    margin-top: 10px;
    display: none;
}