.container { 
    max-width: 1000px; 
    margin: 40px auto; 
    padding: 20px; 
    background: #fff; 
    border-radius: 8px; 
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.booking-form label {
    display:block;
    margin-top:15px;
    font-weight:400;
}

.booking-form input,.booking-form select,.booking-form textarea {
    width:100%;
    padding:10px;
    margin-top:5px;
    border:1px solid #ccc;
    border-radius:4px;
    font-size:1rem;font-weight:400;
}

.booking-form textarea {
    resize:vertical;
    min-height:80px;
}

.booking-form button {
    margin-top:20px;
    padding:12px 20px;
    background-color:#007BFF;
    color:#fff;
    border:none;
    border-radius:5px;
    cursor:pointer;
    font-size:1rem;
}

.booking-form button:hover {
    background-color:#0056b3;
}

.auth-modal {
    display:none;
    position:fixed;
    z-index:1000;
    left:0;
    top:0;
    width:100%;
    height:100%;
    overflow:auto;
    background-color:rgba(0,0,0,0.5);
}

.auth-modal-content {
    background-color:#fff;
    margin:10% auto;
    padding:20px;
    max-width:400px;
    border-radius:8px;
    text-align:center;
}

.auth-modal button {
    margin:10px 0;
    padding:10px 15px;
    width:80%;
    border:none;
    border-radius:5px;
    cursor:pointer;
}

.auth-modal .login-btn {
    background-color:#28a745;
    color:#fff;
}

.auth-modal .register-btn {
    background-color:#17a2b8;
    color:#fff;
}

.auth-modal .guest-btn {
    background-color:#6c757d;
    color:#fff;
}

/* Checkbox inline, szöveg mellette, ne tolja el */
.booking-form .terms-wrapper {
    margin-top: 20px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.booking-form .terms-wrapper input[type="checkbox"] {
    flex-shrink: 0;
    width: auto;
    height: auto;
    margin-top: 2px;
}
.booking-form .terms-wrapper .terms-text {
    display: inline-block;
    font-weight:400;
    font-size:1rem;
    line-height:1.4;
}
.booking-form .terms-wrapper .terms-text a {
    color:#007BFF;
    text-decoration:underline;
}
