﻿.ranking-anime-container{
    width: 100%;
    height: auto;
   
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: center;

    overflow-y: auto;
    padding: 0px 30px 30px 30px;

    gap: 20px;
}

.ranking-anime-item{
    width: 100%;
    height: 100px;

    display: flex;
    justify-content: left;
    align-items: center;

    padding: 10px;
    gap: 10px;

    background: var(--card-title-background);
    border-radius: 5px;

    cursor: grab;
    transition: 0.1s ease;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.ranking-anime-item-ranking-container{
    width: 50px;
    height: 100%;
    
    display: flex;
    justify-content: center;
    align-items: center;

    background: var(--card-background);
    border-radius: 5px;
}

.ranking-anime-item-ranking{
    color: white;
    font-size: 18px;
    font-weight: 800;
}

.ranking-anime-item-grab{
    display: none !important;
    font-size: 20px;
}

.ranking-anime-item:hover .ranking-anime-item-grab {
    display: block !important;
}

.ranking-anime-item:hover .ranking-anime-item-ranking {
    display: none !important;
}

.ranking-anime-item-img {
    width: auto;
    height: 100%;
    border-radius: 5px;
}

.anime-list-button-container{
    width: 100%;
    height: auto;

    padding: 20px 0;

    display: flex;
    justify-content: center;
    align-items: center;
}

.anime-list-button{
    width: auto;
    height: auto;

    padding: 20px 50px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;

    border: none;
    outline: none;
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: 0.1s ease;

    background: var(--card-title-background);
    font-size: 18px;
    font-weight: 700;
}

.anime-list-button:hover{
    transform: scale(1.025);
    cursor: pointer;
}


@media (max-width: 700px) {
    .anime-list-button {
        padding: 7px 30px;
        font-size: 12px;
    }

    .ranking-anime-item-ranking {
        color: white;
        font-size: 12px;
        font-weight: 800;
    }


    .ranking-anime-item-title{
        font-size: 10px;
    }
}