﻿.white-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: #FFFFFF;
    border-radius: 10px;
    margin-bottom: 20px;
}

.top-cat-title {
    margin-bottom: 10px;
}

ul,
ol {
    list-style-type: none;
}

.language-item {
    cursor: pointer;
    border-radius: 5px; /* Optional: add rounded corners */
    transition: background-color 0.3s; /* Optional: smooth transition */
}

    .language-item.selected {
        background-color: #e0e0e0; /* Change to your desired color */
    }

    .language-item a {
        text-decoration: none;
        color: inherit; /* Maintain text color */
    }

.top-cat-list a {
    display: block;
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #EEEEEE;
}

.top-cat-list__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-weight: 600;
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: -0.4px;
    color: #171717;
    margin-bottom: 4px;
}

.top-cat-list__subtitle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: -0.4px;
    color: #b9b9b9;
}

    .top-cat-list__subtitle span {
        font-weight: 500;
        font-size: 10px;
        line-height: 1.2;
        letter-spacing: -0.4px;
        padding: 2px 4px;
        border-radius: 3px;
    }

    .top-cat-list__subtitle .purple {
        color: #5f2eea;
        background-color: rgba(116, 51, 255, 0.1);
    }

    .top-cat-list__subtitle .blue {
        color: #0061f7;
        background-color: rgba(116, 51, 255, 0.1);
    }

    .top-cat-list__subtitle .danger {
        color: #f26464;
        background-color: rgba(245, 91, 93, 0.1);
    }

    .top-cat-list__subtitle .success {
        color: #4bde97;
        background-color: rgba(75, 222, 151, 0.1);
    }

    .top-cat-list__subtitle .warning {
        color: #ffb648;
        background-color: rgba(255, 172, 50, 0.1);
    }

    .top-cat-list__subtitle .primary {
        color: #2f49d1;
        background-color: rgba(47, 73, 209, 0.1);
    }
