/* Scoped Styles for the Map and Grid */
#vfl-map-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
    box-sizing: border-box;
}

#world-map {
    width: 100%;
    height: 400px;
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
}

.vfl-filter-controls {
    text-align: center;
    margin-bottom: 20px;
}

.vfl-btn-reset {
    background-color: #e0e0e0;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
    display: inline-block;
    color: #333;
    font-size: 14px;
}

.vfl-btn-reset:hover {
    background-color: #ccc;
}

#vfl-filter-status {
    margin-top: 10px;
    font-size: 1.1em;
    color: #555;
}

/* Photo Grid */
.vfl-photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.vfl-photo-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.vfl-photo-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    margin: 0;
}

.vfl-photo-caption {
    padding: 12px;
    font-size: 0.9em;
    color: #333;
    text-align: center;
    border-top: 1px solid #f0f0f0;
    background-color: #fff;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Filtering State */
.vfl-photo-card.hidden {
    display: none;
}