.psf-wrapper {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 20px;
    font-family: inherit;
}
.psf-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}
.psf-tab {
    background: none;
    border: none;
    padding: 10px 0;
    font-size: 16px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}
.psf-tab:hover {
    color: #333;
}
.psf-fields-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}
.psf-field-group {
    flex: 1;
    min-width: 150px;
    position: relative;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
}
.psf-location {
    flex: 2;
    min-width: 250px;
}
.psf-input, .psf-select {
    width: 100%;
    border: none;
    padding: 12px 15px;
    font-size: 14px;
    background: transparent;
    outline: none;
}
.psf-select {
    cursor: pointer;
    appearance: none;
}
.psf-submit-group {
    display: flex;
}
.psf-btn-primary {
    border: none;
    color: #fff;
    padding: 0 30px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s ease;
}
.psf-btn-primary:hover {
    opacity: 0.9;
}
.psf-advanced-toggle-wrapper {
    margin-top: 15px;
    text-align: left;
}
.psf-advanced-toggle {
    background: none;
    border: none;
    color: #ef5e4e;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0;
}
.psf-advanced-fields {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed #eee;
}
.psf-amenities-group {
    margin-top: 15px;
}
.psf-amenities-label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 14px;
}
.psf-amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
}
.psf-amenities-grid label {
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}
@media (max-width: 768px) {
    .psf-fields-row {
        flex-direction: column;
    }
    .psf-btn-primary {
        width: 100%;
        justify-content: center;
        padding: 15px;
    }
}