/* input search form */
.search-form-input {
    height: 32px;
    border-width: 0;
    border-radius: 4px 0 0 4px;
    border-color: #dfd8c8;
    padding: 8px 8px;
    flex: 1;
}

.search-form-input::placeholder {
    color: rgb(47, 47, 47);
    padding-left: 8px;
}

.search-form-input:focus {
    background-color: rgb(221, 221, 221)
}

.search-form-button {
    height: 32px;
    width: 32px;
    border-width: 0;
    border-radius: 0 4px 4px 0;
    background-image: url(../assets/img/pokeball_gray.png);
    background-position: 5px center;
    background-size: 24px;
    background-repeat: no-repeat;
    background-color: white;
}

/* load more Pokemon button */
.load-more-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 16px;
}

.btn-load-more {
    align-items: center;
    background: linear-gradient(135deg, rgb(255, 204, 0) 0%, rgb(255, 255, 255) 100%);
    background-size: 200%;
    border: 0;
    border-radius: 8px;
    box-shadow: rgba(151, 65, 252, 0.2) 0 15px 30px -5px;
    color: black;
    display: flex;
    font-size: 20px;
    justify-content: center;
    line-height: 1em;
    max-width: 100%;
    min-width: 140px;
    padding: 19px 24px;
    white-space: nowrap;
    cursor: pointer;
    transition: transform 0.3s ease, background-position 0.3s ease;
}

.btn-load-more:active,
.btn-load-more:hover {
    transform: scale(1.02);
    background-position: 100% 0;
}

.btn-load-all {
    background: linear-gradient(135deg, #3d7dca 0%, rgb(255, 255, 255) 100%);
}

@media (min-width: 768px) {
    .btn-load-more {
        font-size: 24px;
        min-width: 188px;
    }
}