.overview {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    padding: 1rem;
    border-radius: 15px;
}

.overview::before {
    border-radius: 15px;
}

.overview #title {
    font-size: 1.5rem;
    font-weight: 700;
}

.overview .search {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.overview .search label {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    justify-content: center;
}

.overview .search label p {
    font-size: 1rem;
    font-weight: 700;
}

.overview .search label input {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    padding: 0.5rem;
    border-radius: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 16px;
}

.overview .search label select {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    padding: 0.5rem;
    border-radius: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 16px;
}

.overview .search label select option {
    background-color: #2a2a2a;
    color: white;
}

.caught {
    margin-top: 1rem;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.caught .list {
    width: 100%;
    display: flex;
    border-radius: 15px;
}

.caught .list::before {
    border-radius: 15px;
}

.caught .list .data {
    padding: 1rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.16);
    border-radius: 15px;
}

.caught .list .data .top {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 3px solid rgb(43, 43, 43);
}

.caught .list .data .top #displayname {
    font-size: 1.2rem;
    font-weight: 700;
}

.caught .list .data .top #time {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.8;
}

.caught .list .data .top img {
    width: 70px;
}

.caught .list .data .text {
    display: flex;
    width: 100%;
    gap: 1rem;
    margin-top: 10px;
    font-weight: 450;
    opacity: 0.8;
    font-size: 1rem;
}

.caught .list .avatar {
    width: 100%;
    position: absolute;
    display: flex;
    justify-content: right;

}

.caught .list .avatar img {
    width: 180px;
}

.pagination {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    color: #fff;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 20px;
}

.pagination a{
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    padding: 5px;
}
.pagination a::before{
    border-radius: 10px;
}
.pagination a img{
    width: 20px;
}
.pagination a #prev{
    transform: rotate(180deg);
}


@media screen and (max-width: 768px) {
    .overview .search {
        flex-direction: column;
    }
}

@media screen and (max-width: 1000px) {
    .caught {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 600px) {
    .caught {
        grid-template-columns: repeat(1, 1fr);
    }
}