ul#toaster-specs {
    padding: 0;
    margin: 5px 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 400px;
}

ul#toaster-specs li {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    height: 35px;
    align-items: center;
}

.color {
    border-radius: 10px;
    border: 2px solid var(--secondary-background-color);
    padding: 1px 5px;
    box-sizing: border-box;
    height: min-content;
}

#toaster-img {
    max-width: 100%;
    object-fit: contain;
    border-radius: 10px;
    border: 2px solid var(--secondary-background-color);
}

.fill-height {
    height: 100%;
}

.fur-meet-gallery-small {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.fur-meet-gallery-small img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid var(--secondary-background-color);
}

.fur-meet-gallery-small img:hover {
    transform: scale(1.05);
    transition: transform 0.2s ease-in-out;
    cursor: pointer;
}

#fur-meets {
    list-style: none;
    padding: 0;
    margin: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media screen and (max-width: 740px) {
    .flex-row {
        flex-direction: column;
    }
    
    .flex-col {
        flex-direction: row;
    }

    #toaster-img {
        width: 100%;
    }
}

@media screen and (max-width: 690px) {
    .flex-col {
        flex-direction: column;
    }
}

#toaster-wave {
    display: none;
}