.custom-menu-wrapper {
    font-family: Arial, sans-serif;
    color: #ffffff;
    margin: 0;
    padding: 0px;
    background-color: transparent;
}
.custom-menu {
    display: flex;
    flex-direction: column;
    width: 345px;
}
.custom-menu-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #393634;
    text-decoration: none;
    color: #ffffff;
    transition: background-color 0.3s;
}
.custom-menu-item img {
    width: 60px;
    height: 60px;
    margin-right: 15px;
    border-radius: 50%;
}
.custom-menu-item span {
    font-size: 16px;
}
.custom-menu-item:hover {
    background-color: #0F131C;
}
.centered-image-wrapper {
    text-align: center;
    margin-top: 2em; /* Espaço acima da imagem ajustado */
}
.centered-image-wrapper img {
    width: 150px;
    height: 40px;
    display: inline-block;
}
.top-categories {
    display: flex;
    align-items: center;
    background-color: #0f131c; /* Cor de fundo semelhante ao da imagem */
    padding: 10px 15px;
    font-family: Arial, sans-serif;
}

.top-categories .title {
    font-weight: bold;
    color: #ac915b; /* Cor do texto 'TOP' */
    margin-right: 5px;
}

.top-categories .title span {
    color: #fff; /* Cor do texto 'CATEGORIES' */
}

.top-categories .line {
    flex-grow: 1;
    height: 2px;
    background-color: #fff; /* Cor da linha */
    margin-left: 10px;
}
