        body {
            background-color: #1b2838;
        }

        .letter-filter-menu {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(30px, 1fr));
            gap: 7px;
            list-style: none;
            padding: 0;
       }

        .letter-filter-menu a {
            text-decoration: none;
            color: #FFC0CB;
            background-color: transparent;
            font-weight: bold;
            font-size: 13px;
            padding: 5px 9px;
            border: 2px outset #708090;
        }
        .letter-filter-menu a:hover {
            background-color: #899fb5;
            color: #fff;
            border-color: #899fb5;
        }

    .list-thumbnail {
        position: relative;
        overflow: hidden;
        border-radius: 8px;
        width: 100%;
        height: 100%;
        margin: 0 auto;
    }
    
    .list-thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }
    
    .thumb-overlay-info {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        margin: 0 auto;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.85));
        padding: 5px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        box-sizing: border-box;
    }
    
    .thumb-stat-item {
        color: #fff;
        font-size: 19px;
        display: flex;
        align-items: center;
        gap: 3px;
        text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
        white-space: nowrap;
    }
    
    .thumb-stat-item i {
        font-size: 19px;
    }
    
    .thumb-stat-item i.fa-tag {
        color: #17a2b8;
    }
    
    .thumb-stat-item i.fa-heart {
        color: #dc3545;
    }
    
    .stats-vote {
        text-align: center;
        justify-content: flex-end;
        gap: 10px;
    }        