li {
    list-style: none;
}


.gallery {
    list-style: none;
    padding: 0;
    margin: 0 auto 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    
}
.search-form {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}
.search-input {
    background-color: transparent;
    padding: 10px;
    padding-right: 100px;
    margin-top: 20px;
    border: solid 1px black;
    border-radius: 40px;
    outline-style: none;
    transition: all 0.5s ease;
}
.search-input:focus{
    background-color: #f0efef;
    border: solid 2px rgb(224, 224, 224);
    transform: scale(1.1, 1);
}
.photo-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    width: 280px;
}
.photo-card img {
    display: block;
    width: 100%;
    height: 200px;
}
.stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px 16px;
}
.stats-item {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    font-size: 14px;
}
.material-icons {
    font-size: 18px;
}
.load-more {
    display: block;
    margin: 0 auto;
    padding: 12px 20px;
    font-size: 16px;
    background-color: transparent;
    border: solid 1px black;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.load-more:hover{
    background-color: #dcdbdb;
    border: solid 2px rgb(224, 224, 224);
}
.is-hidden {
  display: none;
}
