 

.reservation-container {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 400px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.disabled {
    color: gray;
    pointer-events: none;
    opacity: 0.5;
}

h1 {
    font-size: 24px;
}

.hidden {
    display: none;
}

.input-group {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.input-group input, select, textarea {
    width: 100%;
    padding: 10px;
    margin: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

textarea {
    width: calc(100% - 10px);
    height: 80px;
}

label {
    display: block;
    margin: 10px 0;
}

.submit-btn {
    background: black;
    color: white;
    border: none;
    padding: 10px;
    width: 100%;
    border-radius: 5px;
    cursor: pointer;
}

/* Buttons */
 /* Wrapper for scrollable area */
        .scroll-container {
            display: flex;
            align-items: center;
            max-width: 400px; /* Adjust as needed */
            margin: auto;
            overflow: hidden;
        }

        /* Scrollable button container */
        .person-selection {
            display: flex;
            gap: 10px;
            overflow: hidden;
            scroll-behavior: smooth;
            white-space: nowrap;
            flex-grow: 1;
        }

        /* Buttons */
        .person-btn {
            padding: 10px 20px;
            font-size: 16px;
            border: none;
            cursor: pointer;
            background-color: lightgray;
            border-radius: 5px;
            transition: 0.3s;
            flex: 0 0 auto; /* Prevent shrinking */
        }

        /* Active button */
        .person-btn.active {
            background-color: green;
            color: white;
        }

        /* Arrow buttons */
        .arrow-btn {
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            padding: 10px;
        }
.person-selection, .calendar, .time-grid {
    margin-bottom: 20px;
}

 .time-btn {
    border: none;
    background: #444;
    color: white;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    width: 50px;
}

 .time-btn.active {
    background: white;
    border: 2px solid black;
    color: black;
}

/* Calendar */
.calendar-container {
    background: white;
    padding: 5px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 400px;
    width: 100%;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    padding: 10px 0;
}

.calendar-header button {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    padding: 5px 10px;
    transition: 0.3s;
}

.calendar-header button:hover {
    color: #007bff;
}

.weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    font-weight: bold;
    color: #333;
    padding: 10px 0;
}

.date-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.date-grid span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 50%;
}

.date-grid span:hover {
    background: #007bff;
    color: white;
}

.date-grid .today {
    background: #ff5722;
    color: white;
    font-weight: bold;
}

.date-grid .active {
    background: #007bff;
    color: white;
}

.date-grid .disabled {
    color: gray;
    pointer-events: none;
    opacity: 0.7;
}
/* Time Selection */
.time-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.time-btn {
    padding: 6px;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
}

/* Submit Button */
.submit-btn {
    background: black;
    color: white;
    border: none;
    padding: 10px;
    width: 100%;
    border-radius: 5px;
    cursor: pointer;
}
