/* Style dla kompaktowego widgetu szczegółów profilu */


.profile-details-compact-widget .person-data {
    margin-bottom: 10px;
    font-weight: 500;
}

.profile-details-compact-widget .gender-icon {
    display: inline-block;
    width: 20px;
    font-size: 18px;
    color: #666;
}

.profile-details-compact-widget .male .gender-icon {
    color: #3498db;
}

.profile-details-compact-widget .female .gender-icon {
    color: #e91e63;
}

.profile-details-compact-widget .preference-section {
    margin-top: 15px;
}

.profile-details-compact-widget h4 {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.profile-details-compact-widget .preference-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.profile-details-compact-widget .preference-button {
    color: var(--n---black, #000);
    text-align: center;
    font-family: "Bricolage Grotesque";
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 18.2px */
    letter-spacing: -0.065px;
    background-color: #F9C75B;
    padding: 6px 12px;
    border-radius: 4px;
}

.person-data {
    display: flex;
    gap: 5px;
}
.preference-section h4 {
    color: var(--n---black, #000);
    font-family: Bitter;
    font-size: 19px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    letter-spacing: -0.095px;  
}

/* Responsywność */
@media (max-width: 768px) {
    .profile-details-compact-widget {
        padding: 12px;
    }
}