/* gallery.css */

body {
    background-color: #f5f8f9;
    font-family: Arial, sans-serif;
    color: #4a4a4a;
}

#dropdown-container {
    text-align: center;
    margin-bottom: 20px;
}

.dropdowns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.dropdown {
    flex: 1;
    max-width: 200px;
}

h1 {
    margin-bottom: 20px;
    color: #4CAF50;
}

/* Styles for the gallery container and its children */
#gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
    width: 60vw;
    margin: 0 auto;
    max-width: 1000px;
    background-color: #fff;
    margin-top: 70px;
    border-radius: 40px;
}

#gallery-container .images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom:20px;
}

#gallery-container .images a {
    display: block;
    width: 250px;
    height: 250px;
    overflow: hidden;
    border: 2px solid #ccc;
    border-radius: 4px;
}

#gallery-container .images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#article-117 {
    display: flex;
    flex-direction: column; /* Ensures that the heading is centered above the images */
    align-items: center; /* Centers items horizontally */
}

select {
    display: block;
    width: 100%;
}
#btn {
    display: block;
    justify-content: center;
    margin-top: 20px;
}
#load-button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}