.gaming-form-container {
    max-width: 100%;
    margin: 0 auto;
    color: white;
    padding: 30px 0;
    font-family: Arial, sans-serif;
}

h3 {
    text-align: center;
    margin-bottom: 20px;
    font-weight: normal;
}

.experience-buttons, .salle-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

button.experience-btn, button.salle-btn {
    background: transparent;
    border: 2px solid #60539F;
    color: white;
    padding: 10px 30px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
}

button.experience-btn:hover, button.salle-btn:hover,
button.experience-btn.selected, button.salle-btn.selected {
    border-color: #e905a0;
    box-shadow: 0px 0px 19px 0px #e905a0;
    background: transparent;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.form-group {
    flex: 1;
    text-align: center;
}

.counter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    border: 2px solid #ff1493;
    border-radius: 10px;
    padding: 5px;
    width: 165px;
    margin: 10px auto 0;
}

button.counter-btn {
    background: transparent;
    border: none;
    color: #fff;
    width: 30px;
    height: 30px;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    padding: 0;
}

button.counter-btn:focus,
button.counter-btn:hover {
    background: transparent;
}

.counter-value {
    color: white;
    font-size: 20px;
    font-weight: normal;
    flex: 1;
    text-align: center;
}

.counter input[type="hidden"] {
    display: none;
}

.date-selector {
    margin-bottom: 20px;
}

.month-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0px;
    padding: 10px 0px 0px;
    border-radius: 10px;
}

button.nav-btn {
    background: transparent;
    border: 0px solid #ff1493;
    width: auto;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
    color: #fff;
}

button.nav-btn:hover,
button.nav-btn:focus {
    background: transparent;
    color: white;
}

#month-year-display {
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    flex: 1;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-bottom: 20px;
    max-width: 320px;
    margin: 0px auto;
}

.day-header {
    text-align: center;
    padding: 5px;
    font-size: 12px;
    color: #ccc;
}

#week-days button.day-btn {
    border: 1px solid #fff;
    padding: 0.2rem;
    border-radius: 100%;
    width: 35px;
    height: 35px;
    margin: 0 auto;
    color: #fff;
}

#week-days button.day-btn:hover, #week-days button.day-btn.selected {
    background: #e905a0;
    border-color: #e905a0;
}

#week-days button.day-btn.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    color: #fff;
}

#week-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    max-width: 320px;
    margin: 0px auto;
}



.time-slots {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

button.time-btn {
    background: #35296F;
    border: 2px solid #35296F;
    color: white;
    padding: 5px 4px;
    cursor: pointer;
    border-radius: 10px;
    font-size: 12px;
}

button.time-btn:hover {
    background: #35296F;
    border-color: #e905a0;
}

button.time-btn.selected {
    border-color: #e905a0;
    background: #35296F;
    box-shadow: 0px 0px 19px 0px #e905a0;
}

.prix-section {
    text-align: center;
}

.total-display {
    padding: 15px 25px;
    margin-bottom: 20px;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.total-label {
    color: white;
    font-weight: 500;
    font-size: 18px;
}

#prix-total {
    font-weight: bold;
    color: white;
    font-size: 20px;
}

.submit-btn:hover {
    background: #e905a0;
}

#submit-reservation {
    background: #E905A0;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 10px;
    color: #fff;
}

#message-container {
    margin: 15px 0;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: bold;
    text-align: center;
}

#message-container.error {
    background-color: rgba(220, 53, 69, 0.2);
    border: 2px solid #dc3545;
    color: #ff6b6b;
}

#message-container.success {
    background-color: rgba(40, 167, 69, 0.2);
    border: 2px solid #28a745;
    color: #51cf66;
}