	#toggle {
	  width: 100%;
	  padding: 5px 0;
	  text-align: center;
	  margin-top: 10px;
	  display:none;
	}

        body {
            font-family: 'Poppins', sans-serif;
            background-color: #1a1a2e;
            margin: 0;
            padding: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 80vh;
            color: white;
        }
        
        .booking-container {
            background-color: #16213e;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(0,0,0,0.3);
            padding: 30px;
            width: 100%;
            max-width: 600px;
            color: white;
        }
        
        h1 {
            color: white;
            text-align: center;
            margin-bottom: 30px;
        }
        
        .form-group {
		margin-right: 10px;
		margin-bottom: 20px;
		max-width: 600px; /* Adjust width as needed */
		padding: 0px 10px 0px 0px; /* Add some side padding */
        }
        
        label {
            display: block;
            margin-bottom: 5px;
            font-weight: 500;
            color: white;
        }
        
        input, select, textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #33334d;
            border-radius: 5px;
            font-family: inherit;
            font-size: 16px;
            background-color: rgba(255,255,255,0.1);
            color: white;
        }
        
        button {
            background-color: #5f27cd;
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 5px;
            font-size: 16px;
            cursor: pointer;
            width: 100%;
            font-weight: 500;
            transition: background-color 0.3s;
        }
        
        button:hover {
            background-color: #4a1fa8;
        }
        
        .error {
            color: #ff6b6b;
            font-size: 14px;
            margin-top: 5px;
        }
        
        .success {
            background-color: #2ecc71;
            color: white;
            padding: 15px;
            border-radius: 5px;
            text-align: center;
            margin-bottom: 20px;
        }
        
        .opening-hours {
            background-color: rgba(0,0,0,0.2);
            padding: 15px;
            border-radius: 5px;
            margin-bottom: 20px;
            font-size: 14px;
            border: 1px solid #33334d;
        }
        
        .opening-hours strong {
            color: #e0aaff;
        }
        
        ::placeholder {
            color: #aaa;
            opacity: 1;
        }
        
        .close-btn {
            background-color: #5f27cd;
            margin-top: 15px;
        }
        
        .close-btn:hover {
            background-color: #4a1fa8;
        }
		select#people {
		color: black;
		}
        /* [Previous CSS styles remain the same] */
        
        .timeout-message {
            background-color: rgba(255, 107, 107, 0.2);
            padding: 15px;
            border-radius: 5px;
            margin-bottom: 20px;
            border: 1px solid #ff6b6b;
            text-align: center;
        }
		
		.arrow {
  border: solid black;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
}

.down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}


.table {
    table-layout: auto;
    margin-left: auto;
    margin-right: auto;
    width: 60%;
      }
.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

}