.pagination-container {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap; /* Permite que os botões quebrem a linha */
}

    .pagination-container button {
        background-color: #ff6600;
        color: white;
        border: none;
        padding: 8px 15px;
        margin: 5px;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

        .pagination-container button:hover:not(.active) {
            background-color: #2a5d6f;
        }

        .pagination-container button.active {
            background-color: #2a5d6f;
            border-color: #004085;
            font-weight: bold;
        }

        .pagination-container button:disabled {
            background-color: #cccccc;
            cursor: not-allowed;
            border-color: #bbbbbb;
        }
