
        /* Reset básico */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Corpo e fontes */
        body {
            font-family: 'Poppins', sans-serif; /* Aplicando a fonte Poppins */
            color: #333;
            background-color: #f4f4f4;
            background-image: url('img/bg.jpg');
            background-size: cover; /* A imagem de fundo cobre toda a tela */
            background-position: center; /* Centraliza a imagem */
            background-attachment: fixed; /* A imagem não se move quando a página é rolada */
            min-height: 100vh; /* Garante que a imagem cubra toda a altura da tela */
        }

        /* Cabeçalho */
        header {
            background-color: rgba(31, 31, 31, 0.7);
            color: #fff;
            padding: 20px 0;
        }

header .container {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between; /* título à esquerda e menu à direita */
    align-items: center;
}

header h1 a {
    text-decoration: none;
    color: #fff;
    font-size: 2rem;
    font-family: 'Poppins', sans-serif;
}

header nav ul {
    list-style: none;
    display: flex;
    justify-content: center; /* centraliza os itens no próprio ul */
    align-items: center;
    padding: 0;
    margin: 0;
    /* width: auto;  /* opcional, evita largura extra */
}

header nav ul li {
    position: relative;
    margin-right: 20px; /* espaço entre itens */
}

/* Remove margem à direita do último item para evitar espaço extra no fim */
header nav ul li:last-child {
    margin-right: 0;
}

header nav ul li a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
    padding: 10px 15px;
    transition: all 0.3s ease;
}

header nav ul li a:hover {
    background-color: #f90;
    color: #333;
    border-radius: 5px;
    transform: translateY(-3px);
}


        /* Banner */
.banner {
  height: 100vh;
  display: flex;
  flex-direction: column; /* empilha os itens verticalmente */
  justify-content: center; /* centraliza verticalmente */
  align-items: center; /* centraliza horizontalmente */
  color: #fff;
  padding: 100px 0; /* se quiser manter */
  text-align: center; /* centraliza texto */
}

        .banner h2 {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .banner p {
            font-size: 1.5rem;
            margin-bottom: 30px;
        }

        .banner .btn {
            background-color: #f90;
            color: #fff;
            padding: 15px 30px;
            text-decoration: none;
            font-size: 1.2rem;
            border-radius: 5px;
        }

        /* Seções */
        .features,
        .voting {
            padding: 50px 0;
            background-color: #fff;
        }
.vote-option img {
    width: 100%;
    height: auto;
    max-width: 280px; /* Controle o tamanho máximo das imagens */
    transition: transform 0.3s ease;
}

        .features .container,
        .voting .container {
            width: 90%;
            margin: 0 auto;
        }

        .features h2,
        .voting h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 40px;
        }

        .feature-item {
            margin-bottom: 20px;
        }

        .feature-item h3 {
            font-size: 1.8rem;
            margin-bottom: 10px;
        }

        .feature-item p {
            font-size: 1.2rem;
        }

        .voting .btn {
            background-color: #1f1f1f;
            color: #fff;
            padding: 10px 20px;
            text-decoration: none;
            font-size: 1.2rem;
            border-radius: 5px;
            margin-right: 20px;
        }

        /* Rodapé */
footer {
    background-color: rgba(31, 31, 31, 0.7);
    padding: 20px 0;
    text-align: center;
    color: #fff !important; /* Usa `!important` para sobrescrever outros estilos */
}

footer ul li a {
    color: #fff !important; /* Garante que os links também fiquem brancos */
    text-decoration: none;
    font-size: 1rem;
}

		
/* Estilo geral da navegação */
header nav ul {
    list-style: none;
    display: flex;
    justify-content: center; /* Centraliza os itens na linha */
    align-items: center; /* Alinha os itens verticalmente */
}

header nav ul li {
    margin-right: 20px;
}

/* Estilo do botão azul */
.btn-blue {
    background-color: #007bff; /* Cor azul */
    color: #fff; /* Cor do texto */
    padding: 8px 15px; /* Espaçamento interno */
    text-decoration: none; /* Remove o sublinhado */
    font-size: 1rem; /* Tamanho da fonte */
    font-family: 'Poppins', sans-serif; /* Fonte */
    border-radius: 5px; /* Bordas arredondadas */
    transition: all 0.3s ease; /* Transição suave */
}

/* Efeito de hover (quando o mouse passa sobre o botão) */
.btn-blue:hover {
    background-color: #0056b3; /* Cor azul mais escura */
    transform: scale(1.05); /* Efeito de zoom suave */
}

body {
    cursor: url('img/cursor.png') 16 16, auto; /* A posição 16 16 é a posição do "ponto quente" do cursor */
}

/* Efeito de dowload */
  .image-link {
    display: block;
    transition: transform 0.3s ease; /* Transição suave para o efeito de escala */
  }

  .image-link:hover {
    transform: scale(1.1); /* Aumenta o tamanho da imagem em 10% */
  }


/*  cadastro   */

/* Estilo para o formulário */


form label {
    display: block; /* Faz com que os labels fiquem um abaixo do outro */
    margin-top: 10px;
}

form input, form select, form button {
    width: 100%; /* Faz com que os campos ocupem toda a largura disponível */
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 5px; /* Adiciona um espaçamento entre os campos */
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    background-color: #4CAF50; /* Cor do botão */
    color: white;
    border: none;
    cursor: pointer;
}

form button:hover {
    background-color: #45a049; /* Cor do botão ao passar o mouse */
}


/* Estilo para a seção de recuperação de senha */
#R_SENHA {
    padding: 20px;
    background-color: #f9f9f9; /* Fundo azul escuro */
    border-radius: 8px;
    max-width: 500px; /* Limita a largura da seção */
    margin: 0 auto; /* Centraliza a seção */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Sombra suave */
    color: #fff; /* Cor do texto */
}

#R_SENHA h1 {
    text-align: center;
    color: #FFD700; /* Amarelo dourado */
    margin-bottom: 20px;
}

#R_SENHA .container {
    background-color: #f9f9f9; /* Cor de fundo do container do formulário */
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

/* Ajuste das caixas de entrada (input) para menor tamanho */
#R_SENHA form input[type="text"],
#R_SENHA form input[type="email"] {
    width: 80%; /* Diminuindo a largura das caixas de entrada */
    padding: 8px; /* Diminuindo o preenchimento dentro das caixas */
    margin-bottom: 15px; /* Espaço entre as caixas de entrada */
    border: 1px solid #ccc; /* Borda cinza clara */
    border-radius: 4px; /* Bordas arredondadas */
    font-size: 14px; /* Tamanho da fonte dentro da caixa */
    box-sizing: border-box; /* Inclui o padding e a borda no cálculo da largura */
}

/* Estilo para os labels */
#R_SENHA form label {
    display: block; /* Faz com que os labels fiquem acima das caixas */
    margin-bottom: 5px; /* Espaço abaixo do label */
    font-size: 14px;
}


.vote-buttons {
    display: flex;
    gap: 20px; /* Espaço entre os botões */
    justify-content: center; /* Centraliza os botões */
}

.vote-option {
    display: flex;
    flex-direction: column; /* Coloca a imagem e o texto em coluna */
    align-items: center; /* Centraliza a imagem e o texto */
}

.vote-image-button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.vote-image-button img {
    width: 500px; /* Ajuste conforme necessário */
    height: auto;
    transition: transform 0.2s;
}

.vote-image-button img:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.vote-image-button img:hover:not([disabled]) {
    transform: scale(1.05); /* Efeito de zoom ao passar o mouse */
}

.vote-text {
    margin-top: 8px;
    font-size: 14px;
    text-align: center;
}

.time-remaining {
    font-size: 24px;
    color: white !important; /* Força o BRANCO */
    font-weight: bold;
    text-align: center;
    margin-top: 5px;
}


#informacoes {
    text-align: left;
}

/* botoes do painel */ 

/* Alinhamento dos botões */
.custom-button-row {
    display: flex; /* Organiza os botões em linha */
    gap: 10px; /* Espaçamento entre os botões */
    justify-content: center; /* Centraliza os botões */
}

/* Estilo base para os botões personalizados */
.custom-button-row button {
    padding: 10px 20px; /* Tamanho do botão */
    border: none; /* Remove borda */
    border-radius: 5px; /* Bordas arredondadas */
    color: white; /* Cor do texto */
    font-size: 16px; /* Tamanho do texto */
    cursor: pointer; /* Ícone de ponteiro ao passar o mouse */
    transition: opacity 0.3s ease; /* Suaviza a opacidade no hover */
}

/* Botões com cores exclusivas */
.custom-btn-vote {
    background-color: #4CAF50; /* Verde */
}

.custom-btn-register {
    background-color: #007BFF; /* Azul */
}

.custom-btn-new-password {
    background-color: #FF5733; /* Laranja */
}

.custom-btn-recover-password {
    background-color: #FFC107; /* Amarelo */
    color: black; /* Texto preto para contraste */
}

/* Efeito hover */
.custom-button-row button:hover {
    opacity: 0.8; /* Leve transparência no hover */
}

.message {
    text-align: center; /* Centraliza o texto */
    font-size: 18px; /* Ajuste o tamanho da fonte conforme necessário */
    margin-top: 50px; /* Adiciona um espaçamento superior */
    color: black; /* Ajusta a cor do texto, se necessário */
}

/* Estilos para dispositivos móveis */
@media (max-width: 768px) {
    body {
        font-size: 14px; /* Reduz o tamanho da fonte para melhor visualização */
    }

    header .container {
        flex-direction: column; /* Alinha o conteúdo em coluna no cabeçalho */
        text-align: center; /* Centraliza o texto */
    }

    header nav ul {
        flex-direction: column; /* Alinha os itens do menu verticalmente */
    }

    header nav ul li {
        margin-bottom: 10px; /* Espaçamento entre os itens do menu */
    }

    .banner h2 {
        font-size: 2rem; /* Ajusta o tamanho do texto do banner */
    }

    .banner p {
        font-size: 1rem; /* Ajusta o tamanho do texto do parágrafo */
    }

    .banner .btn {
        font-size: 1rem;
        padding: 10px 20px;
    }

    .features .container,
    .voting .container {
        width: 100%; /* Garante que o conteúdo ocupe toda a largura */
        padding: 10px; /* Adiciona espaçamento interno */
    }

    footer ul {
        flex-direction: column; /* Alinha os itens do rodapé verticalmente */
    }

    footer ul li {
        margin-bottom: 10px; /* Espaçamento entre os itens do rodapé */
    }

    .vote-image-button img {
        width: 100%; /* Ajusta a largura das imagens para caber na tela */
    }

    .custom-button-row {
        flex-direction: column; /* Alinha os botões verticalmente */
        gap: 10px;
    }

    form input, form select, form button {
        font-size: 14px; /* Ajusta o tamanho da fonte dos formulários */
    }

    form label {
        font-size: 12px; /* Reduz o tamanho da fonte do rótulo */
    }
}


/* parte de  noticias e informações  */

.custom-container {
    display: flex;
    justify-content: space-between;
    gap: 20px; /* Espaço entre as caixas */
    flex-wrap: wrap; /* Permite que as caixas se ajustem em telas menores */
}

.feature-box {
    flex: 1;
    min-width: 350px; /* Largura mínima para responsividade */
    max-width: 50%; /* Ajuste de largura máximo para manter as caixas proporcionais */
    padding: 20px;
    border: 2px solid #ccc;
    border-radius: 10px;
    background-color: #f9f9f9;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

/*-----------------    dowloads         -----------  */

.responsive-links {
    display: flex;
    flex-wrap: wrap; /* Permite empilhar itens em telas menores */
    justify-content: center;
    gap: 10px; /* Espaçamento entre os itens */
}

.responsive-links img {
    width: 100%; /* Imagem ocupará 100% da largura disponível no contêiner */
    max-width: 250px; /* Limita o tamanho máximo das imagens */
    height: auto; /* Mantém a proporção original da imagem */
    flex: 1 1 auto; /* Permite que as imagens se ajustem automaticamente ao espaço */
}

@media (max-width: 768px) {
    .responsive-links img {
        max-width: 150px; /* Reduz o tamanho máximo em telas menores */
    }
}

.custom-banner2 {
    width: 100%; /* Ajusta a largura ao tamanho do contêiner pai */
    height: auto; /* Mantém a proporção original da imagem */
    max-width: 950px; /* Limita a largura máxima da imagem */
    margin-right: 10px; /* Espaçamento à direita, se necessário */
    vertical-align: middle; /* Alinha verticalmente ao centro */
}


    .has-submenu {
        position: relative;
    }

    .submenu {
        display: none;
        position: absolute;
background-color: rgba(31, 31, 31, 0.5); /* Mais transparente */

        list-style: none;
        padding: 0;
        margin: 0;
        top: 100%;
        left: 0;
        z-index: 10;
    }

    .submenu li {
        margin: 0;
    }

    .submenu li a {
        display: block;
        padding: 10px 15px;
        text-decoration: none;
        color: white;
background-color: rgba(31, 31, 31, 0.5); /* Mais transparente */

    }

    .submenu li a:hover {
        background-color: #f90;
    }

    .has-submenu:hover .submenu {
        display: block;
    }

/*  --------------  CARTAS MVP ------------------- */

/* Container geral */
.containercard {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}


/* Logotipo */
.logo {
    width: 200px;
    height: auto;
}

/* Texto centralizado */
.centered-text {
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Cartões de drop */
.drops-containerCARD {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.drops-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}


.drop-cardCARD {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    width: 250px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}


.drop-image {
    width: 100%;
    max-height: 200px; /* Limite máximo de altura */
    object-fit: contain; /* Mantém a proporção sem cortar */
    background-color: #eee; /* Fundo para imagens menores que o contêiner */
    padding: 10px; /* Adiciona espaço ao redor */
    box-sizing: border-box; /* Inclui o padding dentro do tamanho total */
}

.drop-infoCARD {
    padding: 10px;
}

.drop-info {
    padding: 10px;
}


.drop-info p {
    margin: 5px 0;
    font-size: 14px;
}

/* Botões de paginação */

.pagination-container {
    display: flex;
    justify-content: center;  /* Centraliza os botões horizontalmente */
    width: 100%;
    margin-top: 20px;
}

.pagination {
    display: flex;
    justify-content: center;  /* Centraliza os botões dentro da div de navegação */
}

.pagination .btn {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin: 5px;
}

.pagination .btn:hover {
    background-color: #0056b3;
}


/* ------------------- ITEM DB ------------------------- */

/* Tornando o CSS exclusivo desta página */
.page-item body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
}

.page-item .search-bar {
    margin: 20px 0;
    text-align: center;
}

.page-item .search-bar input[type="text"] {
    padding: 10px;
    width: 70%;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Estilos para o botão de busca */
.page-item .search-bar button {
    padding: 8px 16px; /* Ajuste do padding para deixar o botão mais proporcional */
    font-size: 14px; /* Diminui o tamanho da fonte para um visual mais "normal" */
    background-color: #1e3d58; /* Mantém a cor de fundo */
    color: white; /* Cor do texto */
    border: 1px solid #ddd; /* Borda sutil */
    border-radius: 5px; /* Borda arredondada */
    cursor: pointer; /* Aparece como pointer quando passa o mouse */
    transition: background-color 0.3s; /* Efeito de transição suave ao passar o mouse */
    width: auto; /* Corrige para o botão ter largura automática */
    max-width: 200px; /* Limita a largura do botão */
    margin-left: 10px; /* Adiciona um pequeno espaço entre o campo de texto e o botão */
}

/* Hover do botão de busca */
.page-item .search-bar button:hover {
    background-color: #555; /* Cor de fundo mais escura quando passa o mouse */
}

.page-item .item-table {
    margin: 20px;
    overflow-x: auto; /* Permite rolar horizontalmente caso necessário */
}

.page-item table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.page-item table th, .page-item table td {
    text-align: left;
    padding: 12px 15px;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
}

/* Centraliza o cabeçalho da coluna ID */
.page-item table th:nth-child(1) {
    text-align: center;
}

/* Centraliza o conteúdo da coluna ID */
.page-item table td:nth-child(1) {
    text-align: center;
}

.page-item table th {
    background-color: #0056b3;
    color: #fff;
    font-weight: bold;
}

.page-item table tr:hover {
    background-color: #f1f1f1; /* Destaque na linha ao passar o mouse */
}

.page-item table td img.table-item-image {
    width: 30px; /* Reduza o tamanho aqui */
    height: 30px; /* Reduza o tamanho aqui */
    object-fit: contain; /* Garante que a imagem não fique distorcida */
}

.page-item .info-button {
    padding: 6px 10px;
    font-size: 12px;
    color: white;
    background-color: #007bff;
    text-decoration: none;
    border-radius: 4px;
}

.page-item .info-button:hover {
    background-color: #0056b3;
}


/* ------------------- Estilos Exclusivos para a Caixa de Pesquisa de Itens ------------------------- */

/* Caixa exclusiva para os itens encontrados na pesquisa */
.search-item-box-exclusive {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Cabeçalho da caixa de item (contendo a imagem e o nome do item) */
.search-item-header {
    margin-bottom: 15px;
}

.search-item-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 10px;
}

.search-item-name {
    font-size: 18px;
    font-weight: bold;
    margin: 5px 0;
}

/* ID do item */
.search-item-id {
    font-size: 14px;
    color: #555;
}

/* Descrição do item */
.search-item-description {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin-top: 15px;
}

/* Exemplo de hover para a caixa (opcional) */
.search-item-box-exclusive:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease-in-out;
}

/* -----------------------------------MONSTRO DB ---------------------*/

    .monster-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
        padding: 20px 0;
    }

    .monster-box {
        background-color: #fff;
        border: 1px solid #ddd;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        text-align: left;
        padding: 15px;
        display: flex; /* Usando Flexbox para alinhar imagem e texto horizontalmente */
        align-items: center;
        transition: transform 0.3s ease;
        position: relative;
    }

    .monster-box:hover {
        transform: translateY(-5px);
    }

    .monster-image {
        width: 100px; /* Largura fixa para a imagem */
        height: auto; /* Altura ajustada proporcionalmente */
        object-fit: contain; /* Manter proporção da imagem sem cortar */
        margin-right: 15px; /* Espaço entre a imagem e o texto */
        max-width: 100px; /* Largura máxima */
        max-height: 100px; /* Altura máxima */
    }

    .monster-info {
        flex: 1; /* O texto ocupa o restante do espaço */
    }

    .monster-name {
        font-size: 18px;
        font-weight: bold;
        margin: 10px 0;
    }

.monster-stats {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 10px;
}

.monster-stats span {
    margin-right: 10px;
}

.monster-box-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    width: 100%;
}

.monster-box-footer .info-button {
    margin-left: 10px; /* Adiciona espaço entre o ID e o botão */
    text-decoration: none; /* Remove o sublinhado do botão */
    color: #fff; /* Cor do texto do botão */
    background-color: #007bff; /* Cor do botão */
    padding: 5px 10px; /* Espaçamento interno do botão */
    border-radius: 5px; /* Borda arredondada */
    transition: background-color 0.3s ease; /* Efeito de transição */
}

.monster-box-footer .info-button:hover {
    background-color: #0056b3; /* Cor de fundo ao passar o mouse */
}

    /* Estilo para o botão de informações */
    .info-button {
        background-color: #007bff; /* Cor azul para o botão */
        color: white;
        padding: 5px 10px; /* Tornar o botão menor */
        font-size: 12px; /* Diminuir o texto do botão */
        border: none;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease;
        display: inline-block; /* Tornar o botão um elemento de bloco, mas não em linha com outros */
        margin-top: 10px; /* Espaço entre o ID e o botão */
    }

    .info-button:hover {
        background-color: #0056b3; /* Cor azul escuro no hover */
    }

    .pagination {
        text-align: center;
        margin-top: 20px;
    }

    .pagination a {
        margin: 0 5px;
        padding: 10px;
        background-color: #1e3d58;
        color: white;
        text-decoration: none;
        border-radius: 5px;
    }

    .pagination a:hover {
        background-color: #0056b3;
    }

/* ------------------------NOVA DO MOB-------------------------*/

/* Estilo exclusivo para a página de monstros */
.mobdb {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.mobdb .monster-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-family: Arial, sans-serif;
}

.mobdb .monster-table th, .mobdb .monster-table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    word-wrap: break-word;
}

/* Estilo para centralizar o ID */
.mobdb .monster-table th:nth-child(1), 
.mobdb .monster-table td:nth-child(1) {
    width: 10%;
    text-align: center; /* Centraliza o conteúdo da coluna ID */
}

.mobdb .monster-table th {
    background-color: #007bff;
    color: white;
    font-weight: bold;
}

.mobdb .monster-table th:nth-child(2), 
.mobdb .monster-table td:nth-child(2) {
    width: 15%;
}

.mobdb .monster-table th:nth-child(3), 
.mobdb .monster-table td:nth-child(3) {
    width: 25%;
}

.mobdb .monster-table th:nth-child(4), 
.mobdb .monster-table td:nth-child(4) {
    width: 10%;
}

.mobdb .monster-table th:nth-child(5), 
.mobdb .monster-table td:nth-child(5) {
    width: 10%;
}

.mobdb .monster-table th:nth-child(6), 
.mobdb .monster-table td:nth-child(6) {
    width: 20%;
}

.mobdb .monster-table th:nth-child(7), 
.mobdb .monster-table td:nth-child(7) {
    width: 10%;
}

.mobdb .monster-table td {
    vertical-align: middle;
}

.mobdb .monster-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.mobdb .info-button {
    padding: 5px 10px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.mobdb .info-button:hover {
    background-color: #0056b3;
}

.mobdb .pagination {
    margin-top: 20px;
    text-align: center;
}

.mobdb .pagination a {
    padding: 8px 16px;
    background-color: #f2f2f2;
    color: #007bff;
    text-decoration: none;
    border-radius: 5px;
    margin: 0 5px;
}

.mobdb .pagination a:hover {
    background-color: #007bff;
    color: white;
}

.mobdb .pagination a:active {
    background-color: #0056b3;
}

/* ---------------------- MOB DETALHES ------------------- */

        .containerMOB {
            max-width: 800px;
            margin: 0 auto;
		text-align: center; /* Centraliza o texto dentro do contêiner */
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .monster-image {
            width: 200px;
            height: 200px;
            object-fit: contain;
            margin: 10px auto;
        }
        .monster-name {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 10px;
        }
        .monster-stats {
            font-size: 16px;
            color: #333;
        }
        .drops-list {
            margin-top: 20px;
            font-size: 16px;
            text-align: left;
        }
        .drops-list table {
            width: 100%;
            border-collapse: collapse;
        }
        .drops-list th, .drops-list td {
            padding: 10px;
            border: 1px solid #ddd;
            text-align: left;
        }
        .drops-list th {
            background-color: #f2f2f2;
        }
        .drop-info {
            display: flex;
            align-items: center;
        }
        .drop-info img {
            max-width: 50px;
            max-height: 50px;
            object-fit: contain;
            margin-right: 10px;
        }
        .drop-id {
            font-size: 12px;
            color: #808080; /* Cor cinza */
            margin-top: 5px;
        }
        .map-info {
            margin-top: 20px;
            font-size: 16px;
            text-align: left;
        }
        .map-info table {
            width: 100%;
            border-collapse: collapse;
        }
        .map-info th, .map-info td {
            padding: 10px;
            border: 1px solid #ddd;
            text-align: left;
        }
        .map-info th {
            background-color: #f2f2f2;
        }
        .map-info td img {
            max-width: 30px;
            max-height: 30px;
            object-fit: contain;
            margin-right: 10px;
        }
.map-info td img {
    max-width: 80px;  /* Controla o tamanho máximo da imagem */
    max-height: 80px; /* Controla o tamanho máximo da imagem */
    object-fit: contain; /* Ajusta a imagem dentro do espaço disponível */
    margin-right: 10px;
}

        .back-link {
            display: inline-block;
            margin-top: 20px;
            padding: 10px 20px;
            background-color: #007bff;
            color: white;
            text-decoration: none;
            border-radius: 5px;
        }
        .back-link:hover {
            background-color: #0056b3;
        }
        .info-button {
            background-color: #007bff;
            color: white;
            padding: 5px 10px;
            text-decoration: none;
            border-radius: 5px;
        }
        .info-button:hover {
            background-color: #0056b3;
        }

/* --------------------------- ITENS DETALHES -------------------------*/

        .containerITEM {
            text-align: center; /* Centraliza o texto dentro do contêiner */
            max-width: 600px;
            margin: 0 auto;
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        .item-image {
            width: 50px;
            height: 50px;
            object-fit: contain;
            margin: 20px auto;
        }
        .item-name {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 10px;
        }
        .item-stats {
            font-size: 16px;
            color: #333;
        }
         .back-link {
            display: inline-block;
            margin-top: 20px;
            padding: 10px 20px;
            background-color: #007bff;
            color: white;
            text-decoration: none;
            border-radius: 5px;
        }
        .back-link:hover {
            background-color: #0056b3;
        }
        .info-button {
            background-color: #007bff;
            color: white;
            padding: 5px 10px;
            text-decoration: none;
            border-radius: 5px;
        }
        .info-button:hover {
            background-color: #0056b3;
        }

#item-details-page .monsters-list {
    margin-top: 20px;
    font-size: 16px;
    text-align: left;
}
#item-details-page .monsters-list table {
    width: 100%;
    border-collapse: collapse;
}
#item-details-page .monsters-list th, #item-details-page .monsters-list td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
}
#item-details-page .monsters-list th {
    background-color: #f2f2f2;
}
#item-details-page .monster-info {
    display: flex;
    align-items: center;
}
#item-details-page .monster-info img {
    max-width: 50px;
    max-height: 50px;
    object-fit: contain;
    margin-right: 10px;
}
#item-details-page .monster-id {
    font-size: 12px;
    color: #808080;
    margin-top: 5px;
}


/* ---------------------- rank pvp -----------------------------*/
.rank-box {
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.rank-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.rank-table th, .rank-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
}

.rank-table th {
    background-color: #4CAF50;
    color: white;
}

.rank-table tr:nth-child(even) {
    background-color: #f2f2f2;
}


/* ---------------------  elemento  --------------*/
.element-icon {
    width: 30px;
    height: 30px;
    margin-left: 8px;
    vertical-align: middle;
}


/* ---------------pequisa de mob -------------------------*/ 

/* Estilos Gerais para a Página de Pesquisa de Monstros */
body.Pmob-page-item {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Alinha o conteúdo no topo */
    flex-direction: column;
    height: 100vh;
    padding: 20px; /* Adiciona espaçamento nas laterais da página */
}

/* Container para centralizar o conteúdo da página */
.Pmob-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

/* Barra de pesquisa */
.Pmob-search-bar {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.Pmob-search-bar form {
    display: flex;
    align-items: center;
    border: 2px solid #007bff;
    border-radius: 5px;
    background-color: #ffffff;
}

.Pmob-search-bar input[type="text"] {
    width: 300px;
    padding: 10px;
    border: none;
    border-radius: 5px 0 0 5px;
    font-size: 16px;
    outline: none;
}

.Pmob-search-bar button {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 0 5px 5px 0;
    font-size: 16px;
}

.Pmob-search-bar button:hover {
    background-color: #0056b3;
}

/* Flexbox para as caixas de monstros */
.Pmob-search-items-container {
    display: flex;
    flex-wrap: wrap; /* Permite quebrar linha para itens que não cabem */
    justify-content: center; /* Centraliza as caixas */
    gap: 20px; /* Espaçamento entre as caixas */
    margin-top: 20px; /* Espaçamento superior para afastar da barra de pesquisa */
    padding: 0 20px; /* Adiciona espaçamento nas laterais das caixas */
}

/* Estilo para a caixa do monstro */
.Pmob-search-item-box-exclusive {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px;
    width: 280px;
    transition: transform 0.3s ease;
    margin: 0 auto; /* Centraliza as caixas dentro do seu contêiner */
    flex: 1 1 280px; /* Flexibilidade para ajustar o tamanho dependendo do espaço */
}



/* Estilos para as caixas de monstros quando o mouse passa por cima */
.Pmob-search-item-box-exclusive:hover {
    transform: scale(1.05); /* Pequena animação de aumento ao passar o mouse */
}

/* Ajustando a imagem do monstro */
.Pmob-search-item-box-exclusive img {
    width: 100%;
    height: auto;
    max-height: 180px;
    object-fit: contain;
    margin-bottom: 15px;
}

/* Informações do monstro */
.Pmob-monster-info {
    text-align: center;
}

.Pmob-monster-name {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.Pmob-monster-stats {
    font-size: 14px;
    color: #555;
}

.Pmob-monster-stats span {
    display: block;
    margin-bottom: 5px;
}

.Pmob-monster-box-footer {
    font-size: 12px;
    color: #777;
    margin-top: 10px;
}

/* Botão de informações */
.Pmob-info-button {
    display: inline-block;
    padding: 8px 15px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    margin-top: 10px;
}

.Pmob-info-button:hover {
    background-color: #0056b3;
}

/*========================== ranks ==================================*/

/* Estilo do ranking - Ajustes */
#informacoes, #mvp-ranking {
    margin-top: 30px; /* Espaço superior */
    margin-bottom: 30px; /* Espaço inferior */
    padding: 0 20px; /* Adiciona espaçamento nas laterais */
}

table {
    width: 100%;
    max-width: 1200px; /* Limita a largura máxima da tabela */
    margin: 0 auto; /* Centraliza a tabela */
    border-collapse: collapse;
    text-align: center;
    background-color: white;
    border: 1px solid #ccc;
}

th, td {
    padding: 12px; /* Aumenta o espaçamento das células */
    border: 1px solid #ddd;
}

th {
    background-color: #f2f2f2;
    font-weight: bold;
}

tr:nth-child(even) {
    background-color: #f9f9f9;
}

tr:hover {
    background-color: #e9e9e9;
}

.class-img {
    width: 50px;
    height: 50px;
}

img {
    vertical-align: middle;
}

header {
    padding: 20px 0;
    margin: 0 auto;
}

/*=============================MENU DO DB =====================*/

/* Estilo exclusivo para o submenu com escopo limitado */
ul.submenu li {
    list-style: none; /* Remove marcadores apenas neste submenu */
}

ul.submenu li a {
    text-decoration: none; /* Remove sublinhado dos links */
    display: flex; /* Alinha os itens na horizontal */
    align-items: center; /* Alinha imagem, prefixo e texto na vertical */
}

/* Estilo para o container de texto e imagem no submenu */
ul.submenu li a .custom-icon-text {
    display: inline-flex; /* Alinha imagem, texto e prefixo lado a lado */
    align-items: center; /* Centraliza verticalmente */
    gap: 8px; /* Espaçamento entre os itens */
}

/* Prefixo "Mdb" exclusivo para o submenu */
ul.submenu li a .custom-icon-text .mdb-prefix {
    font-weight: bold; /* Negrito para "Mdb" */
    color: #333; /* Cor específica */
    margin-right: 4px; /* Espaço entre "Mdb" e a imagem */
}

/* Estilo para a imagem no submenu */
ul.submenu li a .custom-icon-text .custom-icon {
    width: 25px; /* Define a largura da imagem */
    height: 25px; /* Define a altura da imagem */
    flex-shrink: 0; /* Impede redimensionamento da imagem */
}


.custom-icon-text {
    display: flex;
    align-items: center; /* Centraliza o conteúdo verticalmente */
    gap: 8px; /* Espaço entre a imagem e o texto */
}

.custom-icon {
    width: 20px; /* Ajuste o tamanho da imagem */
    height: 20px; /* Ajuste o tamanho da imagem */
}

.icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 10px;
}

.full-width {
  width: 100%;
  height: auto;
}

.btn-votar {
  display: inline-block;
  padding: 15px 30px;
  font-size: 18px;
  background-color: #45858A;
  color: white;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  cursor: pointer;
}

.feature-list {
  list-style: none;
  padding-left: 0;
}

.feature-list li {
  margin-bottom: 10px;
  font-weight: 500;
}

nav ul.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    list-style: none;
    flex-wrap: nowrap;
}

.nav-left,
.nav-right {
    display: flex;
    gap: 20px;
}

.nav-right li {
    list-style: none;
}

.btn-blue {
    background-color: #007BFF;
    color: white;
    padding: 6px 14px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: 1.2s;
}

.btn-blue img {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background-color: #0b0b0b;
    color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.logo-pulse {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        text-shadow: 0 0 5px #ffffff, 0 0 10px #00bfff, 0 0 20px #00bfff;
    }
    50% {
        text-shadow: 0 0 10px #ffffff, 0 0 20px #1e90ff, 0 0 30px #1e90ff;
    }
    100% {
        text-shadow: 0 0 5px #ffffff, 0 0 10px #00bfff, 0 0 20px #00bfff;
    }
}

.features {
    padding: 40px 0;
}

.feature-box {
    background-color: #1a1a1a;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
}

.feature-box h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #ffffff;
}

.feature-item h4 {
    font-size: 18px;
    margin: 8px 0;
    display: flex;
    align-items: center;
}

.feature-item img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

/* Reset básico e controle de overflow */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Container centralizado e responsivo */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Imagens responsivas */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Previne quebra de layout por textos ou elementos */
.feature-box,
.feature-item {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.features-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    align-items: flex-start;
}

.feature-box {
    flex: 1 1 600px;
    background-color: #ffffff; /* Fundo branco para contraste */
    border: 1px solid #ccc;
    border-radius: 12px;
    padding: 30px;
    color: #000000; /* Texto preto */
}

.feature-box h3,
.feature-box h4,
.feature-box p {
    color: #000000; /* Força o texto da box a ser preto */
}

.feature-item h4 {
    display: flex;
    align-items: center;
    font-weight: 400;
    margin: 8px 0;
}

.feature-icon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    vertical-align: middle;
}

.side-image {
    flex: 1 1 400px;
    text-align: center;
}

.side-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* DOWNLOAD PAGE STYLES */
.dl-features {
    padding: 60px 0;
}

.dl-feature-box {
    background-color: #ffffff;
    border: 1px solid #ccc;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    color: #000000;
}

.dl-feature-item h3,
.dl-feature-item p {
    text-align: center;
    color: #000000;
}

.dl-responsive-section {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    align-items: flex-start;
}

.dl-responsive-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.dl-image-link img {
    max-width: 320px;
    height: auto;
    transition: transform 0.3s ease;
}

.dl-image-link img:hover {
    transform: scale(1.05);
}

.dl-promo-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .dl-responsive-section {
        flex-direction: column;
        align-items: center;
    }

    .dl-image-link img {
        max-width: 100%;
    }
}

.homepage-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.homepage-boxes .feature-box {
    flex: 1 1 48%;
    background-color: #ffffff;
    border: 1px solid #ccc;
    border-radius: 12px;
    padding: 30px;
    color: #000000;
}

.feature-item h4 {
    display: flex;
    align-items: center;
    margin: 10px 0;
    font-size: 16px;
    color: #000000;
}

.feature-item h4 img {
    width: 28px;
    height: 28px;
    margin-right: 10px;
}

@media (max-width: 768px) {
    .homepage-boxes {
        flex-direction: column;
    }

    .homepage-boxes .feature-box {
        flex: 1 1 100%;
    }
}

.menu-versusrag {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.menu-versusrag ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  gap: 20px;
  width: max-content;
}

.menu-versusrag ul li a {
  display: inline-block;
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  font-size: 16px;
  padding: 10px 20px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.menu-versusrag ul li a:hover {
  color: #ffffff;
  box-shadow: 0 0 10px #ffffff80;
  transform: scale(1.05);
  background: none;
}

.menu-versusrag ul li a.discord:hover {
  color: #5865F2;
  box-shadow: 0 0 12px #5865F280;
}

.menu-versusrag ul li a.whatsapp:hover {
  color: #25D366;
  box-shadow: 0 0 12px #25D36680;
}


.form-card {
    max-width: 600px;
    margin: 0 auto;
    background: #111;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
}

.form-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-box label {
    font-weight: 600;
    color: #fff;
}

.form-box input,
.form-box select {
    background: #1c1c1c;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px;
    transition: 0.3s;
}

.form-box input:focus,
.form-box select:focus {
    outline: none;
    box-shadow: 0 0 4px #FF4C4C;
}

.btn-submit {
    background: #FF4C4C;
    color: #fff;
    padding: 12px;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    background: #e03b3b;
}

.form-message {
    background: #222;
    color: #ff4c4c;
    padding: 10px;
    border-radius: 6px;
    text-align: center;
    margin-bottom: 2
}

.form-links {
    text-align: center;
    margin-top: 20px;
    color: #ccc;
}

.form-links a {
    color: #ff4c4c;
    text-decoration: none;
    margin: 0 8px;
    transition: 0.2s;
}

.form-links a:hover {
    text-decoration: underline;
}

.vote-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 40px 0;
}

.vote-box {
    background: #111;
    padding: 20px;
    border-radius: 12px;
    width: 250px;
    text-align: center;
    transition: transform 0.2s;
}

.vote-box:hover {
    transform: scale(1.05);
}

.vote-box img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
}

.vote-box h4 {
    color: #fff;
    margin-bottom: 10px;
}

.vote-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.countdown-text {
    color: #ff4c4c;
    font-weight: bold;
    font-size: 14px;
}

.logo-hero-container {
  position: relative;
  width: 320px;
  height: 320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Logo central maior com leve brilho */
.logo-hero {
  width: 100%;
  height: auto;
  z-index: 3;
  position: relative;
  filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.3));
  animation: floatUp 3s ease-in-out infinite;
}

/* Luz pulsante no fundo */
.glow-pulse-bg {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,255,255,0.8), transparent 90%);
  border-radius: 50%;
  animation: glowPulse 2s infinite;
  z-index: 1;
}

/* Círculo orbitante com brilho girando */
.shine-circle {
  position: absolute;
  width: 350px;
  height: 350px;
  border: 4px dashed rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: rotateShine 6s linear infinite;
  z-index: 2;
}

/* Animações */
@keyframes glowPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.2;
  }
}

@keyframes rotateShine {
  0% {
    transform: rotate(0deg);
    border-color: rgba(255, 255, 255, 0.05);
  }
  100% {
    transform: rotate(360deg);
    border-color: rgba(255, 255, 255, 0.15);
  }
}

@keyframes floatUp {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.vote-section {
    padding: 60px 0;
    background: transparent;
    width: 100%;
}

.vote-section .container {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 40px 30px;
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    text-align: center;
}

.vote-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #000000;
}

.vote-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.vote-box {
    background-color: #f9f9f9;
    color: #000000;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vote-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.vote-box img {
    width: 100%;
    height: auto;
    max-height: 120px;
    object-fit: contain;
    border-radius: 6px;
    margin-bottom: 10px;
}

.vote-box h4 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px;
    color: #000000;
}

.vote-box p {
    font-size: 14px;
    color: #000000;
    margin-bottom: 10px;
}

.vote-action-btn {
    background-color: #ff4c4c;
    border: none;
    color: white;
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: inline-block;
    text-decoration: none;
}

.vote-action-btn:hover {
    background-color: #cc0000;
}

.countdown-text {
    color: #ff4c4c;
    font-size: 14px;
    font-weight: bold;
}

.form-message {
    background-color: #222;
    color: #ffd700;
    padding: 10px 15px;
    border-left: 5px solid #ff4c4c;
    border-radius: 6px;
    margin-bottom: 30px;
    font-size: 15px;
    display: inline-block;
}