.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    gap: 1rem;
  
    &__button {
      padding: 0.5rem 1.2rem;
      border-radius: 6px;
      border: 1px solid #ff8c42;
      background: transparent;
      color: #ff8c42;
      font-size: 0.8rem;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.2s ease-in-out;
  
      &:disabled {
        opacity: 0.4;
        cursor: not-allowed;
      }
  
      &:hover:not(:disabled) {
        background: rgba(255, 140, 66, 0.1);
      }
    }
  
    &__info {
      font-size: 0.8rem;
      font-weight: 500;
      color: white;
    }
  }
  