/* Dropdown Styles */
.dropdown-list {
    min-width: 220px; /* Minimum width for dropdowns */
    width: max-content; /* Expand to fit content */
    max-width: 300px; /* Maximum width to prevent over-expansion */
}

.dropdown-link {
    white-space: normal !important; /* Allow text wrapping */
    word-wrap: break-word; /* Break long words */
    padding: 8px 16px; /* Ensure adequate spacing */
    display: block; /* Ensure full width within dropdown */
}

/* Optional: Handle extremely long words */
.dropdown-item {
    hyphens: auto; /* Enable hyphenation */
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
} 