/* Botões estilo Habbo */
.btn-habbo {
    display: inline-block;
    font-family: "Pixelated", sans-serif;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    padding: 10px 15px;
    margin: 5px;
    border-radius: 4px;
    box-shadow: 0px 4px 0px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
    color: white;
    border: none;
}

.btn-habbo-primary {
    background-color: #ffb400;
    color: #fff;
}

.btn-habbo-primary:hover {
    background-color: #e69c00;
}

.btn-habbo-success {
    background-color: #4caf50;
    color: #fff;
}

.btn-habbo-success:hover {
    background-color: #43a047;
}

.btn-habbo-danger {
    background-color: #f44336;
    color: #fff;
}

.btn-habbo-danger:hover {
    background-color: #d32f2f;
}

.btn-habbo-info {
    background-color: #03a9f4;
    color: #fff;
}

.btn-habbo-info:hover {
    background-color: #0288d1;
}

.btn-habbo-dark {
    background-color: #212121;
    color: #fff;
}

.btn-habbo-dark:hover {
    background-color: #424242;
}

/* Adiciona efeito de clique */
.btn-habbo:active {
    transform: translateY(2px);
    box-shadow: 0px 2px 0px rgba(0, 0, 0, 0.2);
}
 .pagination {
    display: flex;
    flex-wrap: wrap; /* Permite que os itens quebrem linha */
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 8px; /* Espaçamento entre os botões */
}

.pagination-link {
    display: inline-block;
    padding: 8px 12px;
    color: #007bff; /* Azul padrão */
    text-decoration: none;
    border: 1px solid #007bff;
    border-radius: 4px;
    font-size: 14px;
    transition: background-color 0.3s, color 0.3s;
    text-align: center;
    min-width: 40px; /* Garante um tamanho mínimo para os botões */
}

.pagination-link:hover {
    background-color: #007bff; /* Azul preenchido */
    color: white; /* Texto branco */
}

.pagination-link.active {
    background-color: #007bff; /* Azul preenchido */
    color: white; /* Texto branco */
    font-weight: bold; /* Destacar a página ativa */
    pointer-events: none; /* Remover ação do clique */
}

/* Responsividade */
@media (max-width: 768px) {
    .pagination-link {
        font-size: 12px; /* Reduz tamanho do texto */
        padding: 6px 10px; /* Ajusta espaçamento interno */
    }
}

.search-form {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    gap: 10px;
}

.search-input {
    width: 100%;
    max-width: 400px;
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.search-input:focus {
    border-color: #007bff;
    outline: none;
}

.search-button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
}

.search-button:hover {
    background-color: #0056b3;
}

.search-button i {
    margin-right: 5px;
}


@media (max-width: 480px) {
    .pagination {
        gap: 4px; /* Reduz espaço entre os botões */
    }
    .pagination-link {
        font-size: 10px; /* Texto menor */
        padding: 4px 8px; /* Botões mais compactos */
    }
}
    #myModal {
  display: none; /* Oculta o modal inicialmente */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4); /* Fundo semitransparente */
}

.modal-content {
  background-color: white;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Ajuste conforme necessário */
  text-align: center;
}