.calendario-reservas {
    max-width: 480px;
    margin: 30px auto;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 24px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    font-family: 'Segoe UI', sans-serif;
}

.calendario-reservas .label {
    font-weight: 600;
    margin-bottom: 10px;
}

.hotel-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.hotel-btn {
    flex: 1;
    padding: 12px;
    border: 2px solid #ccc;
    background: #f9f9f9;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hotel-btn.active {
    background: #198754;
    color: #fff;
    border-color: #198754;
}

.hotel-btn:hover:not(.active) {
    background: #e2f0e8;
    border-color: #198754;
}

.calendario-reservas label {
    display: block;
    font-size: 14px;
    margin-top: 15px;
    margin-bottom: 5px;
}

.calendario-reservas input {
    width: 100%;
    padding: 10px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.submit-btn {
    width: 100%;
    margin-top: 20px;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    background: #0d6efd;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #0b5ed7;
}
