.partnership-directory-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.directory-filters {
    flex: 0 0 300px;
    background: #f5f5f5;
    padding: 20px;
    border-radius: 5px;
}

.directory-filters h3 {
    margin-top: 0;
    color: #2c3e50;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.directory-results {
    flex: 1;
    min-width: 300px;
}

.filter-group {
    margin-bottom: 15px;
}
.city-highlight {
    background-color: #afcf7bad !important;
    display: inline-block;
    padding: 6px 10px !important;
    border-radius: 6px !important;
    width: fit-content;
}
.filter-group label,.filter-group-state label{
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}
.quick-filter-buttons .filter-group-state{
    margin-bottom:20px;
}
.filter-select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.filter-actions {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.filter-button, .reset-button {
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
}

.filter-button {
    background: #2271b1;
    color: white;
    border: none;
}

.reset-button {
    background: #f0f0f1;
    color: #2271b1;
    border: 1px solid #2271b1;
    text-decoration: none;
    text-align: center;
}

.country-group {
    margin-bottom: 30px;
}

.country-header {
    color: #2c3e50;
    border-bottom: 2px solid #2271b1;
    padding-bottom: 5px;
}

.state-header {
    color: #3a5169;
    margin-top: 20px;
    border-bottom: 1px dashed #ccc;
    padding-bottom: 5px;
}

.member-city {
    margin: 15px 0;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 4px;
}

.member-city h4 {
    margin: 0 0 10px 0;
    color: #4a6b8a;
}

.partner-list {
    list-style: none;
    padding-left: 20px;
    margin: 0;
}

.partner-item {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 8px;
}

.partner-type-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.partner-type-icon.friendship-city {
    background-color: #4caf50;
}

.partner-type-icon.emeritus-status {
    background-color: #f44336;
}

.partner-type-icon.sister-cities {
    background-color: #2196f3;
}

.partnership-date {
    color: #666;
    font-size: 0.9em;
}

.no-results {
    padding: 20px;
    background: #f9f9f9;
    border-radius: 4px;
    text-align: center;
}

@media (max-width: 768px) {
    .partnership-directory-container {
        flex-direction: column;
    }
    
    .directory-filters {
        flex: 1 1 auto;
    }
}

/* Quick Filters */
.quick-filters {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.quick-filters h4 {
    margin: 0 0 10px 0;
    font-size: 1em;
    color: #555;
}

.quick-filter-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.quick-filter-button {
    display: inline-block;
    padding: 8px 15px;
    background: #f0f0f1;
    color: #2271b1;
    border: 1px solid #2271b1;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9em;
    transition: all 0.3s ease;
}

.quick-filter-button:hover {
    background: #2271b1;
    color: white;
}

.country-header img
{
	width: 48px;
}

/* Active state for quick filters */
.quick-filter-button.active {
    background: #2271b1;
    color: white;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .quick-filter-buttons {
        flex-direction: column;
    }
    
    .quick-filter-button {
        width: 100%;
        text-align: center;
    }
}
