
body {
    margin: 0;
    font-family: 'Orbitron', sans-serif;
    color: white;
    padding: 20px;
    text-align: center;
}

.glow-text {
    font-size: 32px;
    color: #00ff00;
    text-shadow: 0 0 10px #00ff00;
    margin-bottom: 30px;
}

.booking-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background-color: rgba(0,0,0,0.7);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 0 15px #00ffff;
}

.booking-form label {
    display: flex;
    flex-direction: column;
    text-align: left;
    font-weight: bold;
    color: #00ffff;
}

.booking-form input,
.booking-form select {
    padding: 10px;
    border-radius: 6px;
    border: none;
    margin-top: 5px;
    font-size: 14px;
    background: #222;
    color: white;
    box-shadow: 0 0 8px #00ffff44;
}

.book-button {
    padding: 12px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    background-color: #ff00ff;
    color: white;
    cursor: pointer;
    box-shadow: 0 0 15px #ff00ff;
    transition: 0.3s;
}

.book-button:hover {
    background: #ff33ff;
}
