.search-form {
    margin-bottom: 20px;
    text-align: center;
}
.search-form input[type="text"] {
    padding: 10px;
    width: 60%;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.search-form button {
    padding: 10px 20px;
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.search-form button:hover {
    background-color: #0056b3;
}
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.image-box {
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    text-align: center;
    width: 200px;
}
.image-box img {
    max-width: 100%;
    height: auto;
    display: block;
}
.tags {
    padding: 10px;
    font-size: 14px;
    color: #555;
}
