.rental-inquiry-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

.rental-inquiry-content {
    position: relative;
    background: white;
    width: 90%;
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#gdpr-consent{
    width: initial;
}

.close-popup {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.rental-inquiry-content h3 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.form-row {
    margin-bottom: 15px;
}

.form-row label {
    display: block;
    margin-bottom: 5px;
    color: var(--text-color);
}

.form-row input,
.form-row textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.selected-options {
    background: var(--light-bg);
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.selected-options p {
    margin: 2px 0;
}

.inquiry-submit {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.inquiry-submit:hover {
    opacity: 0.9;
}

.rental-inquiry-btn {
    display: inline-block;
}

.rental-inquiry-btn.button {
    background: #828282;
    color: white;
    padding: 8px 20px;
    min-height: 46px;
    font-weight: bold;
    font-size: medium;
    border-radius: 0px;
    width: 100%;
}

@media (max-width: 768px) {
    .rental-inquiry-content {
        width: 95%;
        margin: 20px auto;
    }
} 