/* --- Customer App Minimalist Dark Theme --- */

* {
    box-sizing: border-box;
}

body,
html {
    height: 100%;
    margin: 0;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #111;
    color: white;
    /* Block layout for reliability */
    display: block;
    overflow-y: auto;
}

/* Hide Scrollbar for Chrome/Safari */
body::-webkit-scrollbar {
    display: none;
}

/* Hide Map */
#map {
    display: none !important;
}

/* Minimalist Booking Container */
#booking-panel {
    position: relative;
    width: auto;
    /* Allow block expansion */
    max-width: none;
    padding: 20px 30px;
    /* Comfortable side padding */
    margin: 0;
    min-height: 100%;
    /* Ensure it fills height if content is short */
    background: transparent;
    border: none;
    box-shadow: none;
}

/* Typography */
h2 {
    margin-top: 0;
    color: #00d664;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
    text-align: center;
    justify-content: center;
}

.input-group {
    margin-bottom: 25px;
    position: relative;
}

label {
    display: block;
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 10px;
    font-weight: 500;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="datetime-local"],
textarea {
    width: 100%;
    padding: 16px 0;
    /* No side padding inside input either? No, text needs padding. */
    padding-left: 10px;
    /* Minimal text padding */
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    color: white;
    font-size: 1.1rem;
    transition: all 0.2s ease;
    font-family: inherit;
    /* Ensure font matches inputs */
}

textarea {
    min-height: 100px;
    /* Double height */
    resize: vertical;
}

input:focus {
    outline: none;
    border-color: #00d664;
    background: #222;
}

/* Checkbox Styling */
.checkbox-row {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 15px 5px;
    /* Minimal horizontal padding */
    background: #1a1a1a;
    border-radius: 8px;
    border: 1px solid #333;
    cursor: pointer;
}

input[type="checkbox"] {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    accent-color: #00d664;
    cursor: pointer;
}

.checkbox-label {
    color: #eee;
    font-size: 1.1rem;
    cursor: pointer;
    font-weight: normal;
}

/* Big Action Button */
button.action-btn {
    width: 100%;
    padding: 20px;
    background: #00d664;
    color: #000;
    border: none;
    border-radius: 50px;
    font-size: 1.25rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 214, 100, 0.3);
    transition: transform 0.2s;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

button.action-btn:hover {
    background: #00e66b;
    transform: scale(1.02);
}

/* Status Message */
#status-msg {
    margin-top: 30px;
    text-align: center;
    font-size: 1.1rem;
    padding: 15px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    body {
        align-items: flex-start;
        /* Align top on mobile */
        background-color: #111;
        overflow-y: scroll;
        /* Allow scroll if needed */
    }

    #booking-panel {
        max-width: 100%;
        padding: 10px 20px;
        /* 20px side padding on mobile */
        /* Zero side padding on mobile */
        min-height: 100vh;
    }

    h2 {
        font-size: 1.5rem;
        margin-bottom: 30px;
        margin-top: 20px;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="datetime-local"],
    textarea {
        border-radius: 4px;
        /* Flatter look on mobile */
    }
}